Skip to content

Instantly share code, notes, and snippets.

@halofx
Last active August 29, 2015 14:09
Show Gist options
  • Select an option

  • Save halofx/6240aecd271593060bcc to your computer and use it in GitHub Desktop.

Select an option

Save halofx/6240aecd271593060bcc to your computer and use it in GitHub Desktop.
Transitions
a {
color: gray;
-webkit-transition: color 0.3s ease;
-moz-transition: color 0.3s ease;
-ms-transition: color 0.3s ease;
-o-transition: color 0.3s ease;
transition: color 0.3s ease;
}
a:hover {
color: black;
}
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin transition($args...) {
-webkit-transition: $args;
-moz-transition: $args;
-ms-transition: $args;
-o-transition: $args;
transition: $args;
}
// Usage
a {
color: gray;
@include transition(color .3s ease);
&:hover {
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment