Created
April 24, 2012 13:11
-
-
Save pahund/2479549 to your computer and use it in GitHub Desktop.
Rotating smiley
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
/** | |
* Rotating smiley | |
*/ | |
@keyframes outer { | |
100% { transform: rotate(360deg) } | |
} | |
@keyframes inner { | |
100% { transform: rotate(-360deg) } | |
} | |
body { | |
background-color: slategray; | |
} | |
div { | |
position: absolute; | |
left: 100px; | |
top: 50px; | |
width: 300px; | |
height: 300px; | |
animation: 3s outer infinite linear; | |
} | |
img { | |
position: absolute; | |
animation: 3s inner infinite linear; | |
} |
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><img src="http://lea.verou.me/css3-workshop-mobilede/img/smile.png"></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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment