A simple method to deal with the tabBar at the bottom of WeChat applet blocking content

A simple method to deal with the tabBar at the bottom of WeChat applet blocking content

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:
  • WeChat Mini Program (Part 3) Detailed Introduction to TabBar Bottom Navigation
  • WeChat applet development to achieve tab (TabBar at the top of the window) page switching
  • WeChat applet development: Tabbar example detailed explanation
  • WeChat applet creates a new login page and hides the tabBar
  • WeChat Mini Program official dynamic custom bottom tabBar example
  • Detailed explanation of WeChat applet custom tabBar adaptation in uni-app
  • Implementation of tabbar icons and colors in WeChat applet development
  • WeChat applet development tab (TabBar at the bottom of the window) page switching
  • WeChat applet tabBar usage example detailed explanation
  • Detailed explanation of the development of WeChat applet custom tabBar component

<<:  Detailed explanation of MySQL 5.7 MGR single master determination master node method

>>:  Centos8 bridge static IP configuration method in VMware virtual machine

Recommend

MySql knowledge points: transaction, index, lock principle and usage analysis

This article uses examples to explain the princip...

How to create your own Docker image and upload it to Dockerhub

1. First register your own dockerhub account, reg...

How to use Vue cache function

Table of contents Cache function in vue2 Transfor...

A "classic" pitfall of MySQL UPDATE statement

Table of contents 1. Problematic SQL statements S...

Use of Linux usermod command

1. Command Introduction The usermod (user modify)...

How to encapsulate the table component of Vue Element

When encapsulating Vue components, I will still u...

Best Practices for Sharing React Code

When any project develops to a certain complexity...

Detailed explanation of concat related functions in MySQL

1. concat() function Function: Concatenate multip...

Index Skip Scan in MySQL 8.0

Preface MySQL 8.0.13 began to support index skip ...

Solutions to MySQL batch insert and unique index problems

MySQL batch insert problem When developing a proj...

How to install PostgreSQL11 on CentOS7

Install PostgreSQL 11 on CentOS 7 PostgreSQL: The...

Javascript to achieve the effect of closing advertisements

Here is a case study on how to close ads using Ja...

Table shows the border code you want to display

Common properties of tables The basic attributes ...

Introduction to RHCE bridging, password-free login and port number modification

Table of contents 1. Configure bridging and captu...

MySQL Database Iron Laws (Summary)

Good database specifications help reduce the comp...