How to implement image carousel using pure css

王林
Release: 2020-07-03 17:05:25
forward
2906 people have browsed it

How to implement image carousel using pure css

Implementation ideas:

(Recommended learning:css quick start)

  • Prepare the same size Multiple pictures

  • Arrange the pictures to be displayed horizontally in a picture container

  • Add a display container outside the picture container, and display the container The size is the size of the image

  • Add custom animation to the image container and set incremental offset values at different stages of the animation

Notes:

  • The animation effect is divided into two parts: switching and staying.

  • The custom animation stage is related to the number of pictures

  • The offset value of each stage of the animation is related to the picture size

  • There is no switching effect from the last picture to the first picture in the example in this article. One idea is to switch one by one from the last picture. Go to the first picture

HTML code:

Copy after login

Code analysis:

Three img elements are created here, outside the img element It is a picture container, and outside the picture container is a display container.

css code:

#container { width: 400px; height: 300px; overflow: hidden; } #photo { width: 1200px; animation: switch 5s ease-out infinite; } #photo > img { float: left; width: 400px; height: 300px; } @keyframes switch { 0%, 25% { margin-left: 0; } 35%, 60% { margin-left: -400px; } 70%, 100% { margin-left: -800px; } }
Copy after login

Code analysis:

  • The display container size is consistent with the image size

  • Add a float effect to the image without having to consider the troublesome margin issue

  • Since the example only has three images, three animation stages are added, and each stage is set by setting an increasing margin-left The value reaches the switching effect

  • The set animation stage (for example: 35%~60%) is the animation stay part, and the idle time of the previous stage (for example: 25%~35%) is When switching parts for animation, you need to control the length of each part yourself

The above is the detailed content of How to implement image carousel using pure css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!