Skip to content

Instantly share code, notes, and snippets.

@justmarkup
Created February 27, 2012 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justmarkup/1924033 to your computer and use it in GitHub Desktop.
Save justmarkup/1924033 to your computer and use it in GitHub Desktop.
Untitled
/**
* 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}
}
{"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