-
-
Save ycmjason/82569b4f142330d956c278c6505d25e0 to your computer and use it in GitHub Desktop.
Sass multiple transitions mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage: @include transition(width, height 0.3s ease-in-out); | |
// Output: -webkit-transition(width 0.2s, height 0.3s ease-in-out); | |
// transition(width 0.2s, height 0.3s ease-in-out); | |
// | |
// Pass in any number of transitions | |
@mixin transition($transitions...) { | |
$unfoldedTransitions: (); | |
@each $transition in $transitions { | |
$unfoldedTransitions: append($unfoldedTransitions, unfoldTransition($transition), comma); | |
} | |
-webkit-transition: $unfoldedTransitions; | |
transition: $unfoldedTransitions; | |
} | |
@function unfoldTransition ($transition) { | |
// Default values | |
$property: all; | |
$duration: .2s; | |
$easing: null; // Browser default is ease, which is what we want | |
$delay: null; // Browser default is 0, which is what we want | |
$defaultProperties: ($property, $duration, $easing, $delay); | |
// Grab transition properties if they exist | |
$unfoldedTransition: (); | |
@for $i from 1 through length($defaultProperties) { | |
$p: null; | |
@if $i <= length($transition) { | |
$p: nth($transition, $i) | |
} @else { | |
$p: nth($defaultProperties, $i) | |
} | |
$unfoldedTransition: append($unfoldedTransition, $p); | |
} | |
@return $unfoldedTransition; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment