/ Published in: CSS
Expand |
Embed | Plain Text
.transition(@obj:all, @time:.5s, @easing:easeOut){ transition: @obj @time @easing; -moz-transition: @obj @time @easing; -ms-transition: @obj @time @easing; -o-transition: @obj @time @easing; -webkit-transition: @obj @time @easing;}
Comments
Subscribe to comments
You need to login to post a comment.

Then use as follow in your style.less file :
.example { .transition(all, .5s, ease-out); }