Less Css transition


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. .transition(@obj:all, @time:.5s, @easing:easeOut){
  2. transition: @obj @time @easing;
  3. -moz-transition: @obj @time @easing;
  4. -ms-transition: @obj @time @easing;
  5. -o-transition: @obj @time @easing;
  6. -webkit-transition: @obj @time @easing;}

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.