Created
December 31, 2011 18:44
-
-
Save LeaVerou/1544914 to your computer and use it in GitHub Desktop.
Animation with one keyframe
This file contains 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
/* 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; } | |
} |
This file contains 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
Hover over me for a surprise ;) |
This file contains 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-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment