您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)jQuery怎么實(shí)現(xiàn)雪花飄落效果,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)雪花飄落效果的具體代碼,供大家參考,具體內(nèi)容如下
效果展示:
源碼展示:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jquery實(shí)現(xiàn)雪花飄落</title> <script src="http://libs.baidu.com/jquery/1.11.3/jquery.min.js"></script> <style> * { margin:0px; padding:0px; } body { position:relative; height:1000px; width:100%; overflow:hidden; background-color: #666; } span { display:block; opacity:0.7; } </style> </head> <body> <script> $(function() { setInterval(function() { var maxW = document.body.clientWidth, maxH = document.body.clientHeight, left = Math.random() * maxW, bottom = left - (Math.random() - 0.5) * 0.2 * maxW, //保證落下的位置水平有變化,但不大 opacity = 0.7 + 0.3 * Math.random(); speed = 30; size = 20 + 10 * Math.random(), //字體20-30 color = '#fff'; // num = Math.floor(Math.random() * 10) //產(chǎn)生0-9隨機(jī)數(shù),當(dāng)然你們可以自己設(shè)置 num ='*'; var style = 'position:absolute;top:0px;font-size:' + size + 'px;color:' + color + ';left:' + left + 'px;opacity:' + opacity; var p = '<span class = "dd" style="' + style + '">' + num + '</span>' $('body').append(p) $('span').animate({ top: maxH, left: bottom }, 3000, function() { $(this).remove() //這一步很關(guān)鍵,要把落下的去掉,不然會(huì)越積越多 }); }, 20) //20ms產(chǎn)生一個(gè) }) </script> <pre style="color:red"> 感: 最近貢獻(xiàn)一下我在教學(xué)中的小案例 希望能給你一些幫助 ,希望大家繼續(xù)關(guān)注我的博客 --王 </pre> </body> </html>
上述就是小編為大家分享的jQuery怎么實(shí)現(xiàn)雪花飄落效果了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。