Image scrolling effect made with CSS3

Image scrolling effect made with CSS3

Achieve results

Implementation Code

html

<base href="https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/">
<div id="slider">
<figure>
<img src="austin-fireworks.jpg" alt>
<img src="taj-mahal_copy.jpg" alt>
<img src="ibiza.jpg" alt>
<img src="ankor-wat.jpg" alt>
<img src="austin-fireworks.jpg" alt>
</figure>
</div>

CSS3

@keyframes slidy {
0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
}

body { margin: 0; } 
div#slider { overflow: hidden; }
div#slider figure img { width: 20%; float: left; }
div#slider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 5s slidy infinite; 
}

other

If you have requirements for switching speed, just modify the last time of CSS3

The above is the details of the image scrolling effect created by CSS3. For more information about CSS3 image scrolling, please pay attention to other related articles on 123WORDPRESS.COM!

<<:  mysql+mybatis implements stored procedure + transaction + multi-concurrent serial number acquisition

>>:  Detailed examples of using JavaScript event delegation (proxy)

Recommend

Commonly used JavaScript array methods

Table of contents 1. filter() 2. forEach() 3. som...

Analysis and summary of the impact of MySQL transactions on efficiency

1. Database transactions will reduce database per...

SVG+CSS3 to achieve a dynamic wave effect

A vector wave <svg viewBox="0 0 560 20&qu...

Share some tips on using JavaScript operators

Table of contents 1. Optional chaining operator [...

How to use CSS attribute value regular matching selector (tips)

There are three types of attribute value regular ...

Details of various font formats in HTML web pages

This section starts with the details of text modi...

How to set the page you are viewing to not allow Baidu to save its snapshot

Today, when I searched for a page on Baidu, becaus...

vue-admin-template dynamic routing implementation example

Provide login and obtain user information data in...

jQuery implements the drop-down box for selecting the place of residence

The specific code for using jQuery to implement t...

Summarize the common properties of BigIn functions in JavaScript

Table of contents 1. Overview 2. Attributes 1. Ma...

HTTP header information interpretation and analysis (detailed summary)

HTTP Header Explanation 1. Accept: Tells the web s...

How to configure the same domain name for the front and back ends of nginx

This article mainly introduces the method of conf...

Echart Bar double column chart style most complete detailed explanation

Table of contents Preface Installation and Config...