After configuring the tabBar in the WeChat applet, important content will be blocked, and different models such as iPhoneX may have a blank space below as shown below. The tricky thing is that the blank space at the bottom of the page will also display the page, so it is necessary to obtain the height of the blocked area. It can be seen that there will be an extra blank space under the iPhoneX, which will also increase the occlusion of the tabBar. Various information about the model can be obtained through wx.getSystemInfoSync(). Among them, screenHeight is the screen height, and the bottom property of safeArea will automatically calculate the safe area, which is the vertical coordinate of the useful area after removing the blank area under the tabBar. This way you can easily calculate the height of the tabBar: const res = wx.getSystemInfoSync() const { screenHeight, safeArea: { bottom } } = res console.log('resHeight',res); if (screenHeight && bottom){ let safeBottom = screenHeight - bottom this.setData({ height: 48 + safeBottom }) } Among them, 48 is the height of our custom tab bar, so that we can customize a component to set the height to support the bottom, and then introduce the tabBar at the end of the page. However, when using webview, the webview will fill the entire page, resulting in failure to fill the blank below. At this time, the height of the obstruction can be passed to the webview page through the URL query and then set padding-bottom for the page. Appendix: Main properties of tabBar: The properties of each item in tabBar are as follows: Summarize This is the end of this article about how to deal with the content obstruction of the tabBar at the bottom of the WeChat mini-program. For more information about the content obstruction of the tabBar at the bottom of the mini-program, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of MySQL 5.7 MGR single master determination master node method
>>: Centos8 bridge static IP configuration method in VMware virtual machine
The so-called cascading replication is that the m...
Get the number of connections --- Get the maximum...
Sometimes, we need to use the hyperlink <a> ...
Download url-loader yarn add -D url-loader module...
Install Install ts command globally npm install -...
Preface: I recently started to study the construc...
After the form input box input is set to the disa...
There are two ways to delete data in MySQL: Trunc...
Table of contents What is a listener in vue Usage...
Relationship between MySQL and MariaDB MariaDB da...
Generally speaking, when we view the contents of ...
How to use css variables in JS Use the :export ke...
Add table fields alter table table1 add transacto...
This article mainly introduces the configuration ...
Table of contents 1. Images 1. What is a mirror? ...