小程序系列--如何配置頁面屬性

簡介

每個小程序頁面也可使用 .json 文件來對本頁面的窗口表現進行配置。頁面中配置項在當前頁面會覆蓋 app.json 的 window 中相同的配置項。頁面配置中只能設置 app.json 中 window 對應的配置項,以決定本頁面的窗口表現,因此無需寫 window 這個屬性。
json

屬性

文件內容爲一個 JSON 對象,有如下屬性:小程序

配置示例

{
    "navigationBarBackgroundColor": "#FF4949",
    "navigationBarTextStyle": "white",
    "navigationBarTitleText": "微信頁面配置demo",
    "backgroundColor": "#13CE66",
    "backgroundTextStyle": "light",
    "enablePullDownRefresh": true,
    "backgroundColorTop":"#99A9BF",
    "onReachBottomDistance":20,
    "usingComponents": {}
}

image.png

相關文章
相關標籤/搜索