写点什么

微信小程序开发笔记(一)

用户头像
陈飞
关注
发布于: 2021 年 02 月 25 日

一、页面配置:

  每个小程序页面也可以使用.json 文件来对本页面的窗口表现进行配置。页面中配置项在当前页面会覆盖 app.json 的 window 中相同的配置项。文件内容为一个 JSON 对象;

属性:

1、navigationBarBackgroundColor     (string) 导航栏背景颜色,如 默认值:#000000

 "navigationBarBackgroundColor": "#FFDAB9"

 

2、navigationBarTitleText  (string)导航栏标题文字内容


3、navigationBarTextStyle (string)导航栏标题颜色即支持 black/white


white:


black:


4、navigationStyle (string)导航栏样式,仅支持

       default:默认样式

       custom:自定义导航栏,只保留右上角胶囊按钮


5、backgroundColor (HexColor)   窗口的背景颜色默认:#ffffff   一般加载时能看到


6、enablePullDownRefresh  (boolean) 是否开启下拉刷新


7、OnReachBottomDistance (numer)  页面上拉触底事件触发时距页面底部距离,单位为 px 默认值为:50


8、PageOrientation (string)屏幕旋转设置支持 auto,portrait,landscap


9、disableScroll   (boolean)  false、true

   

用户头像

陈飞

关注

还未添加个人签名 2020.10.14 加入

还未添加个人简介

评论

发布
暂无评论
微信小程序开发笔记(一)