RustPoint 工具集合

CSS Animation 生成器

生成常见 fade、slide、pulse 动画 keyframes。

返回工具集合
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.item { animation: fade-in .35s ease both; }