How to fix the WeChat applet input jitter problem

How to fix the WeChat applet input jitter problem

Find the problem

Let's look at the problem first. In the mini program, using Vant's Dialog component + mini program element input component, the placeholder text will shake when it pops up, that is, the initial position is slightly above, and then shakes to the correct position.

Problematic screen recording:

After trying, fix the problem:

This is how I fixed it:

.dialog-input,
.dialog-input-placeholder {
 height: 80rpx !important;
 display: flex;
 align-items: center;
}

The above is dedicated to friends who have encountered the same pit, and my almost whole day! 😭

Summarize

This is the end of this article about how to fix the WeChat Mini Program input jitter problem. For more related WeChat Mini Program input jitter content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • WeChat applet input box control detailed explanation and examples (multiple examples)
  • WeChat applet input box detailed explanation and simple example
  • WeChat applet implements simple input regular expression verification function example
  • How to add small icons to the WeChat applet input box
  • WeChat Mini Program (Seventeen) Input Component Detailed Introduction

<<:  Some functions of using tcpdump to capture packets in the Linux command line

>>:  MySQL database must know sql statements (enhanced version)

Recommend

How to use Dockerfile to create a mirror of the Java runtime environment

The current environment is: Centos 7.5 docker-ce ...

Understanding what Node.js is is so easy

Table of contents Official introduction to Node.j...

How to make a div height adaptive to the browser height

This old question has troubled countless front-end...

React sample code to implement login form

As a Vue user, it's time to expand React. Fro...

Postman automated interface testing practice

Table of contents Background Description Creating...

How to use mysqldump for full and point-in-time backups

Mysqldump is used for logical backup in MySQL. Al...

MySQL 5.7.25 installation and configuration method graphic tutorial

There are two types of MySQL installation files, ...

Introduction to CSS BEM Naming Standard (Recommended)

1 What is BEM Naming Standard Bem is the abbrevia...

A brief understanding of the differences between MySQL InnoDB and MyISAM

Preface MySQL supports many types of tables (i.e....

Examples of using html unordered list tags and ordered list tags

1. Upper and lower list tags: <dl>..</dl...

Win7 installation MySQL 5.6 tutorial diagram

Table of contents 1. Download 2. Installation 3. ...

Markup language - specify CSS styles for text

Click here to return to the 123WORDPRESS.COM HTML ...

Master-slave synchronization configuration of Mysql database

Table of contents Mysql master-slave synchronizat...