Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created June 16, 2015 08:07
Show Gist options
  • Save czajkovsky/628c02224fb082431c5d to your computer and use it in GitHub Desktop.
Save czajkovsky/628c02224fb082431c5d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
@keyframes move {
0% { left:0px; top:0px;}
25% { left:200px; top:0px;}
50% { left:200px; top:200px;}
75% { left:0px; top:200px;}
100% { left:0px; top:0px;}
}
.box {
width: 20px;
height: 20px;
background: #f00;
position: relative;
background-color: red;
animation-name: move;
animation-duration: 4s;
}
@keyframes move {
0% {
left: 0px;
top: 0px;
}
25% {
left: 200px;
top: 0px;
}
50% {
left: 200px;
top: 200px;
}
75% {
left: 0px;
top: 200px;
}
100% {
left: 0px;
top: 0px;
}
}
.box {
width: 20px;
height: 20px;
background: #f00;
position: relative;
background-color: red;
animation-name: move;
animation-duration: 4s;
}
<div class='box'></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment