Skip to content

Instantly share code, notes, and snippets.

@mirisuzanne
Last active August 29, 2015 14:07
Show Gist options
  • Save mirisuzanne/e176a2e5440e96d65f76 to your computer and use it in GitHub Desktop.
Save mirisuzanne/e176a2e5440e96d65f76 to your computer and use it in GitHub Desktop.
Compass prefixed transitions demo
// ----
// Sass (v3.4.5)
// Compass (v1.0.1)
// ----
@import "compass";
div {
// Prefixes are based on the latest data from caniuse.com
// You can adjust your support settings as well:
// http://compass-style.org/reference/compass/support/
@include transition(border-radius 0.2s, transform 0.1s linear, border 1s);
}
div {
-moz-transition: border-radius 0.2s, -moz-transform 0.1s linear, border 1s;
-o-transition: border-radius 0.2s, -o-transform 0.1s linear, border 1s;
-webkit-transition: border-radius 0.2s, -webkit-transform 0.1s linear, border 1s;
transition: border-radius 0.2s, transform 0.1s linear, border 1s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment