怎樣用html和css做時鐘的轉(zhuǎn)動效果
1 回答

喵喔喔
TA貢獻1735條經(jīng)驗 獲得超5個贊
css 有個 animation 可以實現(xiàn)動畫,僅僅是動起來,沒法實現(xiàn)實時與系統(tǒng)對時(需要js)
60秒跳動60次旋轉(zhuǎn)360度。(可以使用linear 線性運動)
# animation:anim_mm 60s linear infinite;
animation:mm 60s steps(60) infinite;
@keyframes mm{
to{ transform:rotate(360deg) ;}
}
- 1 回答
- 0 關(guān)注
- 1022 瀏覽
添加回答
舉報
0/150
提交
取消