Skip to content

Instantly share code, notes, and snippets.

@pahund
Created April 24, 2012 13:11
Show Gist options
  • Save pahund/2479549 to your computer and use it in GitHub Desktop.
Save pahund/2479549 to your computer and use it in GitHub Desktop.
Rotating smiley
/**
* 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;
}
<div><img src="http://lea.verou.me/css3-workshop-mobilede/img/smile.png"></div>
{"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