Created
February 27, 2012 14:07
-
-
Save justmarkup/1924033 to your computer and use it in GitHub Desktop.
Untitled
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
/** | |
* rwd animation | |
* from 320x480 to 1800x1000 in 14s | |
*/ | |
div { | |
border: 5px solid #333; | |
border-width: 5px 5px 10px 5px; | |
border-radius: 10px; | |
width: 32px; | |
height: 48px; | |
position: relative; | |
animation-name: rwd; | |
animation-duration: 14s; | |
animation-iteration-count: 10; | |
animation-timing-function: ease-in; | |
} | |
@keyframes rwd { | |
0% {} | |
10% {width: 48px; height: 32px; border-width: 5px 10px 5px 5px} | |
30% {width: 72px; height: 96px; border-width: 5px 5px 15px 5px} | |
50% {width: 96px; height: 72px; border-width: 5px 15px 5px 5px} | |
70% {width: 120px; height: 80px; border-width: 5px 5px 15px 5px} | |
90% {width: 180px; height: 100px; border-width: 5px 5px 20px 5px} | |
} |
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
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment