Previewer for CSS easing functions.
You don't need to do anything. With this plugin loaded, a previewer will appear on hovering the easing values in code blocks.
This plugin is compatible with CSS, Less, Sass, Scss and Stylus.
div {
transition: color 0.3s linear;
}
#header a {
transition-timing-function: ease;
}
.foo
transition: color 0.3s ease-in-out
$attr: background;
.foo {
transition: #{$attr}-color 0.3s cubic-bezier(0.9,0.1,.2,.4);
}
.foo
transition: color 0.3s ease-out