postcss-easings

PostCSS plugin to replace easing names to cubic-bezier()

MIT 9 个版本
安装
npm install postcss-easings
yarn add postcss-easings
pnpm add postcss-easings
bun add postcss-easings
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);
}
Sponsored by Evil Martians

Docs

Read full docs here.

版本列表
4.0.0 2023-07-06
3.0.1 2020-09-27
3.0.0 2020-09-15
2.0.0 2018-09-07
1.0.1 2017-11-05
1.0.0 2017-05-08
0.3.0 2015-08-23
0.2.0 2015-05-05
0.1.0 2015-02-07