postcss-easings

4.0.0 • Public • Published

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);
}
Sponsored by Evil Martians

Docs

Read full docs here.

/postcss-easings/

    Package Sidebar

    Install

    npm i postcss-easings

    Weekly Downloads

    14,525

    Version

    4.0.0

    License

    MIT

    Unpacked Size

    5.43 kB

    Total Files

    4

    Last publish

    Collaborators

    • ai