Created
August 27, 2012 04:39
-
-
Save gj84/3485618 to your computer and use it in GitHub Desktop.
Simple slideshow
This file contains 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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
div#slide { | |
width: 960px; | |
height: 400px; | |
animation: slide 30s; | |
-webkit-animation: slide 30s; | |
-moz-animation: slide 30s; | |
animation-iteration-count: infinite; | |
-webkit-animation-iteration-count: infinite; | |
-moz-animation-iteration-count: infinite; | |
} | |
@keyframes slide { | |
0% {background-image: url('images/im0.jpg');} | |
20% {background-image: url("images/im1.jpg");} | |
40% {background-image: url("images/im2.jpg");} | |
60% {background-image: url("images/im3.jpg");} | |
80% {background-image: url("images/im4.jpg");} | |
100% {background-image: url("images/im5.jpg");} | |
} | |
@-moz-keyframes slide { | |
0% {background-image: url('images/im0.jpg');} | |
20% {background-image: url("images/im1.jpg");} | |
40% {background-image: url("images/im2.jpg");} | |
60% {background-image: url("images/im3.jpg");} | |
80% {background-image: url("images/im4.jpg");} | |
100% {background-image: url("images/im5.jpg");} | |
} | |
@-webkit-keyframes slide { | |
0% {background-image: url('images/im0.jpg');} | |
20% {background-image: url("images/im1.jpg");} | |
40% {background-image: url("images/im2.jpg");} | |
60% {background-image: url("images/im3.jpg");} | |
80% {background-image: url("images/im4.jpg");} | |
100% {background-image: url("images/im5.jpg");} | |
} | |
</style> | |
</head> | |
<body> | |
<div id="slide"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment