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

A simple way to put HTML footer at the bottom of the page

Requirement: Sometimes, when the page content is ...

Next.js Getting Started Tutorial

Table of contents Introduction Create a Next.js p...

Mysql master/slave database synchronization configuration and common errors

As the number of visits increases, for some time-...

7 Ways to Write a Vue v-for Loop

Table of contents 1. Always use key in v-for loop...

CSS3 Tab animation example background switching dynamic effect

CSS 3 animation example - dynamic effect of Tab b...

How to use JS code compiler Monaco

Preface My needs are syntax highlighting, functio...

Detailed example of jQuery's chain programming style

The implementation principle of chain programming...

Html easily implements rounded rectangle

Question: How to achieve a rounded rectangle usin...

jQuery implements form validation function

jQuery form validation example / including userna...

How to install openjdk in docker and run the jar package

Download image docker pull openjdk Creating a Dat...

Introduction to MySQL Connection Control Plugin

Table of contents 1. Introduction to the connecti...

Two methods to stretch the background image of a web page

There are two solutions: One is CSS, using backgro...

MySQL cursor functions and usage

Table of contents definition The role of the curs...

CentOS 6 Compile and install ZLMediaKit analysis

Install ZLMediaKit on centos6 The author of ZLMed...