2 回答

TA貢獻1852條經驗 獲得超7個贊
除了css3 和flash,請問還有更好的方案嗎?js動畫,存在大量的CPU運算和GPU,從運算開始,到每一幀的動畫展示,這其中都有一個時間差,所以采用純js的方案,肯定是不行的。

TA貢獻1808條經驗 獲得超4個贊
試試這個@keyframes
例子如下,和他差不多吧
@keyframes myfirst
????{
????0% ? {background: red; left:0px; top:0px;}
????25% ?{background: yellow; left:200px; top:0px;}
????50% ?{background: blue; left:200px; top:200px;}
????75% ?{background: green; left:0px; top:200px;}
????100% {background: red; left:0px; top:0px;}
????}
@-webkit-keyframes myfirst /* Safari and Chrome */
????{
????0% ? {background: red; left:0px; top:0px;}
????25% ?{background: yellow; left:200px; top:0px;}
????50% ?{background: blue; left:200px; top:200px;}
????75% ?{background: green; left:0px; top:200px;}
????100% {background: red; left:0px; top:0px;}
????}
- 2 回答
- 0 關注
- 1873 瀏覽
添加回答
舉報