Skip to content

Instantly share code, notes, and snippets.

@IvanaSays
Last active August 9, 2017 12:35
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 IvanaSays/462d0216f182e13ea06345e34de8dc86 to your computer and use it in GitHub Desktop.
Save IvanaSays/462d0216f182e13ea06345e34de8dc86 to your computer and use it in GitHub Desktop.
2 - Performant Animations
.box {
transform: translateX(10px);
position: absolute;
transition: .2s;
&.active {
transform: translateX(0px);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment