Skip to content

Instantly share code, notes, and snippets.

@yisibl
Created April 3, 2015 05:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yisibl/e4ff39fccf220db8976a to your computer and use it in GitHub Desktop.
Save yisibl/e4ff39fccf220db8976a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$colors-list: width height border margin;
.foo {
@each $current-color in $colors-list {
$i: index($colors-list, $current-color) * .5s;
transition: $current-color $i;
}
}
.foo {
transition: width 0.5s;
transition: height 1s;
transition: border 1.5s;
transition: margin 2s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment