在这偌大的城市里,我们每一个人都像一颗星星,不停地努力发光着,加油,愿世间美好与你环环相扣。
星辰大海,愿你我安好
选择一张星星的照片
JS代码
setInterval(creatImg,200);
function creatImg(){
//创建img标签
var oImg=document.createElement('img');
//追加到body中
document.body.appendChild(oImg);
oImg.src='img/star.gif';
//星星的大小随机,设置随机宽高
var w=rand(5,20);
oImg.width=w;
oImg.height=w;
//位置随机
oImg.style.position='absolute';
oImg.style.left=rand(0,window.innerWidth-w)+'px';
oImg.style.top=rand(0,window.innerHeight-w)+'px';
//点击时消失
oImg.onclick=function(){
this.remove();
}
}
//产生随机数
function rand(n,m){
return Math.round(Math.random()*(m-n)+n);
}