📜  steps() 属性 css 代码示例

📅  最后修改于: 2022-03-11 14:47:51.733000             🧑  作者: Mango

代码示例1
@keyframes clocksweep {
    to { 
        transform: rotate(1turn);
    }
}
#secondhand {
    animation: clocksweep 60s steps(60) infinite;
}