Created
April 3, 2014 13:18
-
-
Save anonymous/9954157 to your computer and use it in GitHub Desktop.
A Pen by Olivvv.
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></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
@import "compass"; | |
div:before { | |
content: ""; | |
display: block; | |
width: 50px; | |
height: 50px; | |
background:red; | |
animation: rotate 3000ms forwards infinite ease; | |
} | |
@keyframes rotate { | |
from {transform: rotateX(0)} | |
to {transform: rotateX(360deg)} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment