Created
August 6, 2014 12:43
-
-
Save tobiasahlin/7a421fb9306a4f518aab 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; | |
} |
Great! Thank you!
This is perfect! Thanks!!
Great job! Thanks!
many thanks
I get Error: () isn't a valid CSS value.
when I'm calling @include transition();
.
Is there a way to returns defaults values transition(all .2s)
when calling the mixin without argument?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works perfectly, thank you!