生成和预览CSS动画效果。
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .element { animation: fadeIn 0.5s ease forwards; }