Skip to content

Instantly share code, notes, and snippets.

@tobaco
Created December 1, 2014 15:07
Show Gist options
  • Save tobaco/7d020c4d41291c230c81 to your computer and use it in GitHub Desktop.
Save tobaco/7d020c4d41291c230c81 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin frankly_trans(
$property: all,
$time: .3s,
$ease: out
) {
$easing: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
@if $ease == out {
$easing: cubic-bezier(0.550, 0.055, 0.675, 0.190); /* easeInCubic */
}
transition: $property $time $easing;
}
body {
@include frankly_trans($ease: out);
}
body {
/* easeOutCubic */
/* easeInCubic */
transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment