Skip to content

Instantly share code, notes, and snippets.

@dileshni
Created July 11, 2015 20:21
Show Gist options
  • Save dileshni/8f85192e60fb71c765c1 to your computer and use it in GitHub Desktop.
Save dileshni/8f85192e60fb71c765c1 to your computer and use it in GitHub Desktop.
JdvjWv
<div class="moving_box"></div>
.moving_box {
width: 100px;
height: 100px;
background-color: red;
position: relative;
-webkit-animation-name: box; /* Chrome, Safari, Opera */
-webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
animation-name: box;
animation-duration: 4s;
animation-delay: 2s;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes box {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}
/* Standard syntax */
@keyframes box {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment