Skip to content

Instantly share code, notes, and snippets.

@collingo
Created February 9, 2012 23:09
Show Gist options
  • Save collingo/1784126 to your computer and use it in GitHub Desktop.
Save collingo/1784126 to your computer and use it in GitHub Desktop.
LESS Transition Mixin
.transition-all (@time: 0.5s, @property: all, @function: ease-in-out) {
-webkit-transition:@property @time @function;
-moz-transition:@property @time @function;
-o-transition:@property @time @function;
transition:@property @time @function;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment