小程序中的页面配置属性

Posted 哈比老乌龟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序中的页面配置属性相关的知识,希望对你有一定的参考价值。

<page-meta
  background-text-style="bgTextStyle"
  background-color="bgColor"
  background-color-top="bgColorTop"
  background-color-bottom="bgColorBottom"
  scroll-top="scrollTop"
  page-style="color: green"
  root-font-size="16px"
>
  <navigation-bar
    title="nbTitle"
    loading="nbLoading"
    front-color="nbFrontColor"
    background-color="nbBackgroundColor"
  />
</page-meta>


Page(
  data: 
    bgTextStyle: 'dark',
    scrollTop: '200rpx',
    bgColor: '#ff0000',
    bgColorTop: '#00ff00',
    bgColorBottom: '#0000ff',
    nbTitle: '标题',
    nbLoading: false,
    nbFrontColor: '#000000',
    nbBackgroundColor: '#ffffff',
  ,
)
属性类型默认值必填说明最低版本
background-text-stylestring下拉背景字体、loading 图的样式,仅支持 darklight2.9.0
background-colorstring窗口的背景色,必须为十六进制颜色值2.9.0
background-color-topstring顶部窗口的背景色,必须为十六进制颜色值,仅 ios 支持2.9.0
background-color-bottomstring底部窗口的背景色,必须为十六进制颜色值,仅 iOS 支持2.9.0
root-background-colorstring页面内容的背景色,用于页面中的空白部分和页面大小变化 resize 动画期间的临时空闲区域2.12.1
scroll-topstring“”滚动位置,可以使用 px 或者 rpx 为单位,在被设置时,页面会滚动到对应位置2.9.0
scroll-durationnumber300滚动动画时长2.9.0
page-stylestring“”页面根节点样式,页面根节点是所有页面节点的祖先节点,相当于 html 中的 body 节点2.9.0
page-font-sizestring“”页面 page 的字体大小,可以设置为 system ,表示使用当前用户设置的微信字体大小2.11.0
root-font-sizestring“”页面的根字体大小,页面中的所有 rem 单位,将使用这个字体大小作为参考值,即 1rem 等于这个字体大小;自小程序版本 2.11.0 起,也可以设置为 system2.9.0
page-orientationstring“”页面的方向,可为 auto portraitlandscape2.12.0
bindresizeeventhandle页面尺寸变化时会触发 resize 事件, event.detail = size: windowWidth, windowHeight 2.9.0
bindscrolleventhandle页面滚动时会触发 scroll 事件, event.detail = scrollTop 2.9.0
bindscrolldoneeventhandle如果通过改变 scroll-top 属性来使页面滚动,页面滚动结束后会触发 scrolldone 事件2.9.0

以上是关于小程序中的页面配置属性的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 页面配置

微信小程序的页面配置在哪个问价

微信小程序____阿里云服务器配置

小程序配置单个页面导航栏的属性(微信小程序交流群:604788754)

小程序备忘

H5在微信小程序及公众号中的支付