Guest User

Untitled

a guest
Nov 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //usage: @include shift([property],[duration],[easing]);
  2. @mixin shift($property: all, $duration: .3s, $ease: linear){
  3. -webkit-transition: $property $duration $ease;
  4. -moz-transition: $property $duration $ease;
  5. -o-transition: $property $duration $ease;
  6. transition: $property $duration $ease;
  7. }
Add Comment
Please, Sign In to add comment