現代瀏覽器下的動畫實現

來源:互聯網
上載者:User

要在瀏覽器下實現動畫,有幾個JS的Lib不得不提:

1) requestAnimationFrame,利用現代瀏覽器介面提供比setTimer和setInterval更高效的計時器(timer)。當然不相容的瀏覽器,將還是使用setTimeout。

2)  Tween.js,類似AS中的Tween類,可以高效處理DOM元素渲染計算。適用於2D動畫特效。

3)  three.js,提供給現代瀏覽器3D功能的支援,當然還有網路攝影機,聲頻等功能支援。適用於3D動畫特效,瀏覽器安全色問題較嚴重。

4) stats.js,提供FPS計算。

其中2,3和4,都需要結合requestAnimationFrame來提供計算效率。

大致的流程如下:

function init(){ //初始化相關元素

}

function animate(){
        requestAnimationFrame( animate ); //定時器
        update();

}

function update(){//每幀動畫執行

}

init();//啟動初始化

animate();//啟動定時器


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.