Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Created March 3, 2015 19:08
Show Gist options
  • Save codenamejason/2db60c1171d1a6652f93 to your computer and use it in GitHub Desktop.
Save codenamejason/2db60c1171d1a6652f93 to your computer and use it in GitHub Desktop.
Cheap Animations with CSS
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