Skip to content

Instantly share code, notes, and snippets.

@tevko
Created March 26, 2014 15:50
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 tevko/9786504 to your computer and use it in GitHub Desktop.
Save tevko/9786504 to your computer and use it in GitHub Desktop.
css transition type used for moving menus
// since I always forget - http://css-tricks.com/almanac/properties/t/transform/
.mainHeader-nav {
width: 100%;
position: absolute;
left: 100%;
transition: 1s ease;
-webkit-transform: translate(-100%,-60px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment