首页 > 代码库 > 有意思的效果——摇曳的萤火虫
有意思的效果——摇曳的萤火虫
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> img{border: 0;position:absolute;width: 20px;height: 20px;} body{background: url(img/img/bg.jpg);} </style> </head> <script src="js/jquery-1.11.3.js"></script> <script> $(function(){ var count=100; var aa=document.getElementById("a") for(var j=0;j<count;j++){ var img=document.createElement("img") img.src="img/img/1.jpg" aa.appendChild(img) } a=Math.random()*1500 b=Math.random()*700 $("img").css({left:a,top:b}) $("img").animate({left:Math.random()*300,top:Math.random()*300},1000,function(){ var timmer=setInterval(function(){ for(var i=0;i<count;i++){ c=Math.random()*1200 d=Math.random()*650 sp=Math.random()*2000+2000 $("img").eq(i).animate({left:c,top:d},sp) } },5000) }) }) </script> <body> <div id="a"></div> </body> </html>
有意思的效果——摇曳的萤火虫
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。