A Pen by David cruz on CodePen.
Last active
February 21, 2019 20:31
-
-
Save dfc201692/871ae8ac765ad206e5347252d2f71992 to your computer and use it in GitHub Desktop.
xMNBwO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="slider"> | |
<ul> | |
<li> | |
<img src="http://3.bp.blogspot.com/-zuZNp8mCPHo/UTXL_KkG38I/AAAAAAAAPbY/C6UhAMvhF00/s1600/Avion_de_chasse-cover-photo-48538.jpg" alt=""> | |
</li> | |
<li> | |
<img src="http://2.bp.blogspot.com/-2ACkUvIxrUw/Uh2CreN_WFI/AAAAAAAAAHs/QPwtNpx-17A/s1600/avion_despegando_wallpaper_y_portada_facebook-1440x900.jpg" alt=""> | |
</li> | |
<li> | |
<img src="https://imagenesyfondos.files.wordpress.com/2012/12/cabecera-de-facebook-ii-gguerra-mundial-avioneta.jpg" alt=""> | |
</li> | |
<li> | |
<img src="https://images.eltiempo.digital/files/article_main/files/crop/uploads/2019/02/16/5c686d6e8ddb0.r_1550349703378.0-0-3000-1500.jpeg" alt=""> | |
</li> | |
</ul> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.slider { | |
width: 95%; | |
margin: auto; | |
overflow: hidden; | |
} | |
.slider ul { | |
display: flex; | |
padding: 0; | |
width: 400%; | |
animation: cambio 20s infinite alternate linear; | |
} | |
.slider li { | |
width: 100%; | |
list-style: none; | |
} | |
.slider img { | |
width: 100%; | |
} | |
@keyframes cambio { | |
0% {margin-left: 0;} | |
20% {margin-left: 0;} | |
25% {margin-left: -100%;} | |
45% {margin-left: -100%;} | |
50% {margin-left: -200%;} | |
70% {margin-left: -200%;} | |
75% {margin-left: -300%;} | |
100% {margin-left: -300%;} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
slider en html