Created
May 25, 2012 21:36
Transforms & regular CSS properties
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
/** | |
* Transforms & regular CSS properties | |
*/ | |
@keyframes subpixel-mess { | |
to { | |
top: 100px; | |
transform: translateY(0) | |
} | |
} | |
div { | |
position: relative; top: 0; | |
width: 100px; height: 100px; | |
background: yellowgreen; | |
transform: translateY(100px); | |
animation: subpixel-mess 1s infinite; | |
} |
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
<div></div> |
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","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