Solution to the problem of too high penetration of input and textarea levels in WeChat applet

Solution to the problem of too high penetration of input and textarea levels in WeChat applet

The WeChat mini-program native components camera, canvas, input (only behaves as a native component when focused), live-player, live, pusher, map, textarea, and video have the highest hierarchy. No matter how much the z-index of other components on the page is set, they cannot cover the native components.

insert image description here

insert image description here

From the effect in the figure, we can see that the input content penetrates into the selection list custom component. The solution is:
1. Use if to hide the input or textare component when the selection list is triggered. When the selection is completed, click Confirm to close the selection list and display the input or textare.
2. Select the custom components in the list and use cover-view and cover-image components instead of view and image. The cover-view and cover-image components can be covered on some native components.

<cover-view class="cover-view" style="{{height}}" wx:if="{{isShowModel}}">
    <cover-view class="selectModel">
      <cover-view class="model" @tap="onShowOrHideModel()"></cover-view>
      <cover-view class="modelBox">
        <cover-view class="title">{{title}}(multiple selections possible)</cover-view>
        <cover-view class="list">
          <block wx:for="{{waitClassifyNamesList}}" wx:key="{{index}}">
            <cover-view class="li" @tap="onClickSelect({{item.optionCode}})">
              <cover-image wx:if="{{filter.isInclude(item.optionCode,classifyIds)}}" class="icon" src="/image/signatory/selected.png"></cover-image>
              <cover-image class="icon" src="/image/signatory/unSelect.png" wx:else></cover-image>
              <cover-view class="name">{{item.optionName}}</cover-view>
            </cover-view>
          </block>
        </cover-view>
        <cover-view class="btn" @tap="onSubmitSelectService">Confirm</cover-view>
      </cover-view>
    </cover-view>
  </cover-view>

insert image description here

The implementation effects of the two methods are shown in the figure above. As for which method to choose, choose according to actual needs.

This is the end of this article about how to solve the problem of excessive penetration of WeChat mini-program input and textarea levels. For more relevant mini-program input and textarea penetration content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the scroll penetration problem in WeChat applet
  • How to implement scroll penetration and prevent scrolling in WeChat applet scroll-view

<<:  Things to note when designing web pages for small-screen mobile devices

>>:  Creative opening effect achieved by combining CSS 3.0 with video

Recommend

A practical record of an accident caused by MySQL startup

Table of contents background How to determine whe...

The use of v-model in vue3 components and in-depth explanation

Table of contents Use two-way binding data in v-m...

How to manually deploy war packages through tomcat9 on windows and linux

The results are different in Windows and Linux en...

How to draw the timeline with vue+canvas

This article example shares the specific code of ...

Detailed explanation of the update command for software (library) under Linux

When installing packages on an Ubuntu server, you...

Detailed explanation of Zabbix installation and deployment practices

Preface Zabbix is ​​one of the most mainstream op...

MySQL performance optimization tips

MySQL Performance Optimization MySQL is widely us...

Simple example of HTML checkbox and radio style beautification

Simple example of HTML checkbox and radio style b...

How to use & and nohup in the background of Linux

When we work in a terminal or console, we may not...

Summary of MySQL LOAD_FILE() function method

In MySQL, the LOAD_FILE() function reads a file a...

Problems encountered in using MySQL

Here are some problems encountered in the use of ...