postcss-easings
v4.0.0
Published
PostCSS plugin to replace easing names to cubic-bezier()
Downloads
52,972
Maintainers
Readme
PostCSS Easings
PostCSS plugin to replace easing name from easings.net to cubic-bezier()
.
.snake {
transition: all 600ms ease-in-sine;
}
.camel {
transition: all 600ms easeInSine;
}
.snake {
transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
.camel {
transition: all 600ms cubic-bezier(0.47, 0, 0.745, 0.715);
}
Docs
Read full docs here.