最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于JavaScript實現(xiàn)飄落星星特效

 更新時間:2017年08月10日 09:30:54   作者:愛吃炒飯的逗比小豆豆  
這篇文章主要為大家詳細(xì)介紹了基于JavaScript實現(xiàn)飄落星星特效,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了js飄落星星特效的具體代碼,供大家參考,具體內(nèi)容如下

1.效果圖

2.代碼

<!DOCTYPE html> 
<html lang="en"> 
<head> 
 <meta charset="UTF-8"> 
 <title>Title</title> 
 <style> 
 img{ 
  position: absolute; 
 } 
 body { 
 
  background-image: url(img/bg.jpg); 
  background-size: 100%; 
 
 } 
 </style> 
 
 <script> 
 
 function Star() { 
 
 
  this.speed=10; 
  this.img=new Image(); 
  this.img.src="img/star"+parseInt(Math.random()*4+1)+".png"; 
  this.img.style.width=50+'px'; 
  this.img.style.height=50+'px'; 
  this.img.style.top=Math.random()*window.innerHeight+1+'px'; 
  this.img.style.left=Math.random()*window.innerWidth+1+'px'; 
  document.body.appendChild(this.img); 
 } 
 
 Star.prototype.slip=function () { 
 
  var that=this; 
  function move() { 
  that.img.style.top=that.img.offsetTop+that.speed+'px'; 
  console.log(that.img.offsetTop+"star"); 
  console.log(window.innerHeight+"window"); 
  if(that.img.offsetTop>window.innerHeight){ 
   clearInterval(sh); 
   that.img.style.height=0; 
   that.img.style.width=0; 
  } 
  } 
  var sh=setInterval(move,100); 
 } 
 
  setInterval(function () { 
  for(var i=1;i<5;i++){ 
  new Star().slip(); 
  } 
  },1000) 
 
 </script> 
 
</head> 
 
<body> 
 
 
</body> 
</html> 

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

崇阳县| 德惠市| 拉萨市| 武定县| 福清市| 浦北县| 彭山县| 乌兰察布市| 孝义市| 大同县| 扶余县| 闸北区| 句容市| 龙井市| 鹤壁市| 通化市| 普定县| 东兴市| 含山县| 霍州市| 沙洋县| 喀喇沁旗| 外汇| 南川市| 盘锦市| 永兴县| 黄大仙区| 平昌县| 柳林县| 潼南县| 精河县| 温州市| 浙江省| 彰化市| 积石山| 河曲县| 长治县| 柏乡县| 特克斯县| 涞源县| 繁峙县|