Solution to css3 transform transition jitter problem

Solution to css3 transform transition jitter problem

transform: scale(); Scaling will cause jitter in IE browser

Transform scaling will cause jitter in IE browser. You can add a rotation while scaling.

like:

transform: scale(1.2);

Replace with:

transform: scale(1.2) rotate(0.1deg);

transform:translate(); offset will make the image or text blurry

Transform offset can also cause images or text to lose frame and become blurred. You can use clac to solve this problem.

like:

transform:translate(-50%);

Replace with:

transform: translate(calc(-50% + 1px));

clac is a calculated property of CSS3, which can be used in calculations in styles. The syntax of clac is: clac(number + number).注:這里“運算符號”兩端的空格不能少

Transform has compatibility. IE browser is only compatible with IE 9. The compatible writing method is:

transform:scale(1.2)rotate(0.1deg);
-ms-transform:scale(1.2)rotate(0.1deg); /* IE 9 */
-moz-transform:scale(1.2)rotate(0.1deg); /* Firefox */ 
-webkit-transform:scale(1.2) rotate(0.1deg); /* Safari and Chrome */ 
-o-transform:scale(1.2)rotate(0.1deg); /* Opera */

This is the end of this article about how to solve the CSS3 transform transition jitter problem. For more information about CSS3 transform transition jitter, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  How complicated is the priority of CSS styles?

>>:  After submitting the html drop-down menu, the selected value is retained instead of returning to the default value

Recommend

MySQL partitioning practice through Navicat

MySQL partitioning is helpful for managing very l...

How to publish static resources in nginx

step Place the prepared static resource files in ...

MySQL 8.0.25 installation and configuration method graphic tutorial

The latest download and installation tutorial of ...

Create an SSL certificate that can be used in nginx and IIS

Table of contents Creating an SSL Certificate 1. ...

Analysis of MySQL lock mechanism and usage

This article uses examples to illustrate the MySQ...

12 Useful Array Tricks in JavaScript

Table of contents Array deduplication 1. from() s...

wget downloads the entire website (whole subdirectory) or a specific directory

Use wget command to download the entire subdirect...

What is Nginx load balancing and how to configure it

What is Load Balancing Load balancing is mainly a...

How to install and deploy gitlab server on centos7

I am using centos 7 64bit system here. I have tri...

Detailed explanation of VUE's data proxy and events

Table of contents Review of Object.defineProperty...

SQL implementation of LeetCode (177. Nth highest salary)

[LeetCode] 177.Nth Highest Salary Write a SQL que...

Detailed explanation of mixed inheritance in Vue

Table of contents The effect of mixed inheritance...

Using MySQL database in docker to achieve LAN access

1. Get the mysql image docker pull mysql:5.6 Note...