首页 > web前端 > js教程 > 正文

JavaScript如何实现飘落星星特效的实例代码详解

黄舟
发布: 2017-08-10 10:33:40
原创
1355 人浏览过

这篇文章主要为大家详细介绍了基于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中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!