Created
March 3, 2015 19:08
-
-
Save codenamejason/2db60c1171d1a6652f93 to your computer and use it in GitHub Desktop.
Cheap Animations with CSS
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
Use only these four selectors and the load speed won't cost you too much: | |
_________________________________________________________________________ | |
************************************************************************* | |
Position- transform: translate(npx, npx); | |
Scale- transform: scale(n); | |
Rotation- transform: rotate(ndeg); | |
Opacity- opacity: 0...1; | |
Note: It may be required in your code to also use; | |
translateZ() | |
translate3d() | |
_________________________________________________________________________ | |
************************************************************************* | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment