Css3 realizes seamless scrolling and anti-shake

Css3 realizes seamless scrolling and anti-shake

question

The seamless scrolling of pictures and texts has a generally good effect on mobile phones, but the pictures will shake terribly on some mobile browsers!

Wrong writing

You cannot use left or margin-left, like this:

.donghua.active{
  animation: scoll ease-in-out 1s infinite alternate;
  -webkit-animation: scoll ease-in-out 1s infinite alternate;
}
@keyframes scoll {
  from {
    left: 0;
  }
  to {
    left: -353px;
  }
}
-webkit-@keyframes scoll {
  from {
    left: 0;
  }
  to {
    left: -353px;
  }
}

Workaround

An element in it will shake terribly on mobile phones. Use 2D translate like this:

.donghua.active{
  animation: scoll ease-in-out 1s infinite alternate;
  -webkit-animation: scoll ease-in-out 1s infinite alternate;
}
@keyframes scoll {
  0% {
    transform: translate(0px, 0px);
  }

  100% {
    transform: translate(0px, -353px);
  }
}
@-webkit-keyframes scoll {
  0% {
    transform: translate(0px, 0px);
  }

  100% {
    transform: translate(0px, -353px);
  }
}

The above is the details of how to achieve seamless scrolling and anti-shake using Css3. For more information about CSS3 seamless scrolling and anti-shake, please pay attention to other related articles on 123WORDPRESS.COM!

<<:  How to import and export Cookies and Favorites in FireFox

>>:  Detailed explanation of JavaScript object conversion to primitive value

Recommend

A tutorial on how to install, use, and automatically compile TypeScript

1. Introduction to TypeScript The previous articl...

How to install binary MySQL on Linux and crack MySQL password

1. Make sure the system has the required libaio s...

Use the Linux seq command to generate a sequence of numbers (recommended)

The Linux seq command can generate lists of numbe...

How to use limit_req_zone in Nginx to limit the access to the same IP

Nginx can use the limit_req_zone directive of the...

SQL IDENTITY_INSERT case study

Generally speaking, once a column in a data table...

WEB Chinese Font Application Guide

Using fonts on the Web is both a fundamental skill...

Vue echarts realizes horizontal bar chart

This article shares the specific code of vue echa...

Example analysis of the principle and solution of MySQL sliding order problem

This article uses examples to explain the princip...

Best Practices for Sharing React Code

When any project develops to a certain complexity...

How to create and run a Django project in Ubuntu 16.04 under Python 3

Step 1: Create a Django project Open the terminal...

How to make form input and other text boxes read-only and non-editable in HTML

Sometimes, we want the text boxes in the form to b...

Example of converting webpack images to base64

Download url-loader yarn add -D url-loader module...

Can't connect to local MySQL through socket '/tmp/mysql.sock' solution

Error message: ERROR 2002: Can't connect to l...