今天google 首頁的javascript 動畫實現。好吧,我來晚了。。。

來源:互聯網
上載者:User

很多人都對今天google 首頁的動態logo 感興趣,我也照著實現了一下,但是剛剛發現園子裡已經有人捷足先登了(請看這裡)。。。

畢竟是自己的勞動成果,我想就還是發了吧,其實 胡尐睿丶 同學的實現還是有點投機取巧的,他把動畫執行完成後產生的html 全部複製下來了,先全部隱藏然後再逐個顯現。。。

我的方法則是和google 一樣,不斷的插入帶有背景的div 來實現的,先是建立一個這些div 樣式資訊[left, top, width, height, background-position-x, background-position-y] 的數組,然後用setTimeout 定時地插入帶有這些樣式的div 即可。

效果如下:(點擊運行!

動畫中用到的背景圖片:

代碼則比較簡單:

(function() {
var style_info = [
[307,48,88,89,0,0],
[307,48,89,89,-88,0],
//此處省略n行...
];
var logo = document.getElementById('hplogo');
(function logo_run() {
setTimeout( function() {
var a, div;
if (a = style_info.shift()) {
div = document.createElement('div');
div.style.cssText = 'position:absolute;'+
'left:'+a[0]+'px;top:'+a[1]+'px;width:'+a[2]+'px;height:'+a[3]+'px;'+
'background:url("graham11-hp-sprite.png") no-repeat '+a[4]+'px '+a[5]+'px;';
logo.appendChild(div);
logo_run();
}
}, 83);
})();
})();
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.