Skip to content

Instantly share code, notes, and snippets.

@emmgfx
Last active December 11, 2015 03:28
Show Gist options
  • Save emmgfx/4537995 to your computer and use it in GitHub Desktop.
Save emmgfx/4537995 to your computer and use it in GitHub Desktop.
Transiciones para LESS
.transition(@type: All, @seconds: 0.1s, @ease: ease-in){
-webkit-transition:@type @seconds @ease;
-moz-transition:@type @seconds @ease;
-o-transition:@type @seconds @ease;
transition:@type @seconds @ease;
}
/*
USO:
a{
.transition
color:#0c0;
}
a:hover{
color:#c00;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment