Home>Article>WeChat Applet> Detailed explanation of WeChat applet global configuration and page configuration
【Related learning recommendations:小program learning tutorial】
Setting steps :app.json => window => navigationBarTitteText
Requirement: Change the title on the navigation bar from the default "WeChat" to "Dark Horse Programmer", the effect is as shown in the figure:
Setting steps: app.json => window => navigationBarBackgroundColor
Requirement: Change the navigation bar title The background color is changed from the default #fff to #2b4b6b. The effect is as shown in the figure:
Setting steps: app.json -> window -> navigationBarTextStyle
Requirement: Change the title color on the navigation bar from the default black to white. The effect is as shown in the figure:
Note: The only available values for navigationBarTextStyle are black and white
Concept: Pull-down refresh is a proper term for the mobile terminal , refers to the act of reloading page data by sliding your finger down on the screen.
Setting steps: app.json -> window -> Set the value of enablePullDownRefresh totrue
Note: Enable pull-down in app.json The refresh function will be applied to every mini program page!
When the pull-down refresh function is enabled globally, the default window background is white. If you customize the background color of the drop-down refresh window, the setting steps are: app.json -> window -> Specify the hexadecimal color value #efefef for backgroundColor. The effect is as follows:
When the pull-down refresh function is turned on globally, the default window loading style is white. If you want to change it For the effect of loading style, the setting steps are app.json -> window -> Specify thedark
value for backgroundTextStyle. The effect is as follows:
Note: The optional values of backgroundTextStyle are only light and dark
Concept: Pull-up bottoming is a proper term for the mobile terminal. It is the act of loading more data by sliding your finger up on the screen.
Setting steps: app.json -> window -> Set a new value for onReachBottomDistance
Note: The default distance is 0. If there are no special needs, it is recommended to use the default value That’s it.
tabBar is a common page effect in mobile applications and is used to quickly switch between multiple pages. Mini programs are usually divided into:
Bottom tabBar
Top tabBar
Notice:
Only a minimum of 2 and a maximum of 5 tabs can be configured in the tabBar. When the top tabBar is rendered, the icon is not displayed, only the text
In the mini program, each page has its own .json configuration file, which is used to configure the current page Configure window appearance, page effects, etc.
In the mini program, the window node in app.json can globally configure the window performance of each page in the mini program.
If some small program pages want to have special window performance, at this time, the "page-level .json configuration file" can achieve this requirement.
Note: When the page configuration conflicts with the global configuration, based on the proximity principle, the final effect will be based on the page configuration.
[Related learning recommendations:小program learning tutorial]
The above is the detailed content of Detailed explanation of WeChat applet global configuration and page configuration. For more information, please follow other related articles on the PHP Chinese website!