PostCSS plugin to replace easing names to cubic-bezier()
npm install postcss-easings title="Philosopher’s stone, logo of PostCSS"
src="https://postcss.org/logo-leftp.svg">
[PostCSS] plugin to replace easing name from [easings.net] to cubic-bezier().
[easings.net]: http://easings.net/
[PostCSS]: https://github.com/postcss/postcss
``css`
.snake {
transition: all 600ms ease-in-sine;
}
.camel {
transition: all 600ms easeInSine;
}
`css``
.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);
}
alt="Sponsored by Evil Martians" width="236" height="54">