4.打地鼠实现

来源:互联网 发布:黑色沙漠捏脸数据下载 编辑:程序博客网 时间:2024/05/22 16:52
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title> 小星星 </title>  <script type="text/javascript">  window.onload = function(){  document.body.bgColor = "black";  window.setInterval("star()",1000);  }  function star(){var imgObj = document.createElement("img");imgObj.setAttribute("src","images/dishu.jpg");var x = getRandom(0,window.innerWidth);var y = getRandom(0,window.innerHeight);imgObj.setAttribute("style","position:absolute; left:"+x+"px;top:"+y+"px;");document.body.appendChild(imgObj);imgObj.setAttribute("onclick","remove(this)");  }  function getRandom(min,max){var random = Math.random()*(max-min)+min;random = Math.floor(random);return random;  }  function remove(obj){document.body.removeChild(obj);  }  </script> </head> <body>   </body></html>

原创粉丝点击