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

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

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

本文實例為大家分享了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)文章

最新評論

鹿泉市| 台东县| 工布江达县| 唐河县| 深水埗区| 汶川县| 韶山市| 左权县| 井陉县| 古蔺县| 钟祥市| 双城市| 天峻县| 夏河县| 霸州市| 留坝县| 西昌市| 太康县| 饶平县| 淮北市| 大新县| 镇雄县| 扎鲁特旗| 庄浪县| 贺兰县| 郓城县| 西城区| 封丘县| 郎溪县| 岐山县| 武城县| 伊川县| 行唐县| 米脂县| 荣昌县| 米易县| 东港市| 区。| 常州市| 深圳市| 隆安县|