下雪了 javascript實現(xiàn)雪花飛舞
來源:易賢網(wǎng) 閱讀:861 次 日期:2016-07-06 15:44:04
溫馨提示:易賢網(wǎng)小編為您整理了“下雪了 javascript實現(xiàn)雪花飛舞”,方便廣大網(wǎng)友查閱!

下雪了,這篇文章主要介紹了javascript實現(xiàn)雪花飛舞,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了雪花飛舞效果javascript實現(xiàn),供大家參考,具體內(nèi)容如下

原理:

1、js動態(tài)創(chuàng)建DIV,指定CLASS類設(shè)置不同的背景圖樣式顯示不同的雪花效果。

2、js獲取創(chuàng)建的DIV并改變其top屬性值,當(dāng)下落的高度大于屏幕高后刪除該移動div

3、好像不夠完善勿噴

效果預(yù)覽:http://wjf444128852.github.io/demo02/snow/index.html

HTML代碼:

<!DOCTYPE html>

<html lang="en">

<head>

 <meta charset="UTF-8">

 <title>雪花飛舞</title>

 <link rel="stylesheet" href="css/index.css">

 <script src="js/move.js"></script>

</head>

<body>

 <div class="snow_parent" id="js_sonw">

 </div>

</body>

</html>

CSS代碼:

*{

 margin:0;

 padding:0;

 list-style: none;

 border: none;

}

body{

 width: 100%;

 height:600px;

 background:#000;

}

.snow_parent{

 position: relative;

 width: 100%;

 height:100%;

 overflow: hidden;

 margin: 0 auto;

}

.snow_parent div.parent{

 background-image: url(../img/snow.png);

 float: left;

 -webkit-transform: scale(.1);

 -moz-transform: scale(.1);

 -o-transform: scale(.1);

 -ms-transform: scale(.1);

 transform: scale(.1);

 position: absolute;

}

.snow_one{

 width: 180px;

 height: 180px;

 background-position:0 0;

 background-repeat: no-repeat;

 left:-70px;

 top: -95px;

}

.snow_two{

 width: 140px;

 height: 140px;

 background-position:-220px -18px;

 left:-30px;

 top: -75px;

}

.snow_three{

 width:150px;

 height: 150px;

 background-position:-400px -15px;

 left:-20px;

 top: -80px;

}

.snow_four{

 width: 160px;

 height: 160px;

 background-position:-10px -206px; 

}

.snow_four{

 left:-10px;

 top: -85px;

}

JS代碼:

/*

 creatBy jiucheng 2016-4-24

*/

window.onload=function(){

 init();

}

// 創(chuàng)建DIV

function creatDiv(){

 // 創(chuàng)建DIV并追加到父元素

 var snowDiv=document.createElement("div");

 document.getElementById("js_sonw").appendChild(snowDiv);

 // 讓創(chuàng)建DIV的class為隨機(jī),顯示不同的雪花

 var whatName=["snow_one parent","snow_two parent","snow_three parent","snow_four parent"];

 var index=Math.floor(Math.random()*whatName.length);

 snowDiv.className=whatName[index];

 // 獲取該DIV的left屬性值(隨機(jī)的)并賦值給創(chuàng)建的DIV

 var whatLeft=getLeft()+'px';

 snowDiv.style.left=whatLeft;

 return snowDiv;

}

// 獲取隨機(jī)left屬性值

function getLeft(){

 // 獲取該DIV的最大left屬性值即父元素的寬度

 var eleParent=document.getElementById("js_sonw");

 // 獲取父元素的所有style樣式

 var style=window.getComputedStyle(eleParent);

 // CSS中的left是負(fù)數(shù)這里得減去下

 var maxWidth=parseInt(style.width)+70;

 // 讓創(chuàng)建的DIV的left為隨機(jī)值

 var randomLeft=Math.floor(Math.random()*maxWidth);

 return randomLeft;

}

// 讓其向下移動

function moveDown(){

 // 獲取移動對象

 var moveElem=creatDiv();

 // 獲取移動對象的所有style屬性值

 var eleStyle=window.getComputedStyle(moveElem);

 // 獲取它的top屬性值

 var eleTop=parseInt(eleStyle.top);

 // 設(shè)置定時器動態(tài)改變移動對象的top屬性值

 var t=setInterval(function(){

  eleTop++;

  // 把新的top值付給移動對象

  moveElem.style.top=eleTop+"px";

  // 當(dāng)下落到屏幕的高度后停止定時器并把該移動對象從父元素刪除

  if(eleTop>=window.innerHeight){  

   clearInterval(t);

   document.getElementById("js_sonw").removeChild(moveElem);

  }  

 },10);//下落速度沒10毫秒下落1px

}

function init(){

 // 動態(tài)獲取并設(shè)置body的高度

 document.body.style.height=window.innerHeight+"px";

 // 每500毫秒創(chuàng)建一個移動對象并執(zhí)行移動函數(shù)

 var t=setInterval(function(){

  moveDown();

 },100);

}

以上就是本文的全部內(nèi)容,希望對大家學(xué)習(xí)javascript程序設(shè)計有所幫助。

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:下雪了 javascript實現(xiàn)雪花飛舞
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機(jī)號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機(jī)站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報警專用圖標(biāo)