animation-name - animationプロパティ
animation-name- animationプロパティ
プロパティ
animation-name
@keyframesとの関連付け
例
.box { width: 100px; height: 100px; animation-name: grow-progress; } @keyframes grow-progress { from { scale: 1 1; } to { scale: 5 5; } }
animation-name- animationプロパティ
@keyframesとの関連付け
.box { width: 100px; height: 100px; animation-name: grow-progress; } @keyframes grow-progress { from { scale: 1 1; } to { scale: 5 5; } }