Design Tools
CSS Animation Generator — Build @keyframes Animations Free
🔒 在瀏覽器中執行
Build CSS @keyframes animations without hand-coding. Set the animation name, duration, timing function, delay, iteration count, direction, and fill mode using form controls — the generated CSS class and keyframes block update live. Hit Play to preview the animation on a demo element. No upload, no account — runs in your browser.
如何使用此工具
- 設定動畫名稱、持續時間、緩動函數與其他屬性。
- 點擊「播放」以在示範元素上預覽動畫。
- 複製生成的 CSS 類別與 @keyframes 區塊。
.fade-in {
animation-name: fade-in;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-fill-mode: none;
}
@keyframes fade-in {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}The keyframe template shows a fade-in-up effect. Edit the @keyframes block to customise the animation. Everything runs in your browser.