4.0.0 • Published 10 months ago

postcss-easings v4.0.0

Weekly downloads
20,119
License
MIT
Repository
github
Last release
10 months ago

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.