Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created December 31, 2011 18:44
Show Gist options
  • Save LeaVerou/1544914 to your computer and use it in GitHub Desktop.
Save LeaVerou/1544914 to your computer and use it in GitHub Desktop.
Animation with one keyframe
/* Animation with one keyframe */
html { background: white }
body {
width: 100px; height: 100px;
background: slategray;
}
html:hover > body {
animation: 1s animation infinite;
}
@keyframes animation {
50% { width: 200px; }
}
Hover over me for a surprise ;)
{"view":"split-vertical","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment