首頁 >web前端 >js教程 >JavaScript如何實現飄落星星特效的實例程式碼詳解

JavaScript如何實現飄落星星特效的實例程式碼詳解

黄舟
黄舟原創
2017-08-10 10:33:401435瀏覽

這篇文章主要為大家詳細介紹了基於JavaScript實現飄落星星特效,具有一定的參考價值,有興趣的朋友們可以參考一下

本文實例為大家分享了js飄落星星特效的具體程式碼,供大家參考,具體內容如下

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+&#39;px&#39;; 
   this.img.style.height=50+&#39;px&#39;; 
   this.img.style.top=Math.random()*window.innerHeight+1+&#39;px&#39;; 
   this.img.style.left=Math.random()*window.innerWidth+1+&#39;px&#39;; 
   document.body.appendChild(this.img); 
  } 
 
  Star.prototype.slip=function () { 
 
   var that=this; 
   function move() { 
    that.img.style.top=that.img.offsetTop+that.speed+&#39;px&#39;; 
    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>

以上是JavaScript如何實現飄落星星特效的實例程式碼詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn