码迷,mamicode.com
首页 > 其他好文 > 详细

点出漫天小星星

时间:2016-11-24 19:27:58      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:rip   public   随机   head   osi   utf-8   ima   clientx   document   

技术分享

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html onclick="init(event)">
 <head>
  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <script type="text/javascript">
        //点出漫天小星星
        //背景色
        //给html添加onclick事件
        //创建图片节点,并追加到body父节点下
        //图片的随机大小
        function init(e){
                //创建图片节点(在内存中,还看不见)
                var imgObj=document.createElement("img");
                //追加节点
                document.body.appendChild(imgObj);
                //添加属性
                imgObj.src="xingxing.gif";
               //添加width属性
               imgObj.width=getRandom(15,85);
               //定位
               var x=e.clientX? e.clientX : event.clientX;
               var y=e.clientY? e.clientY : event.clientY;
               imgObj.style.position="absolute";
               imgObj.style.left=x - imgObj.width/2+"px";
               imgObj.style.top=y- imgObj.width/2+"px";
        }
        function getRandom(min,max){
                return Math.floor(Math.random()*(max-min)+min);
        }
  </script>
 </head>
 <body style="background-color:black" >
 </body>
</html>

 

点出漫天小星星

标签:rip   public   随机   head   osi   utf-8   ima   clientx   document   

原文地址:http://www.cnblogs.com/yangzailu/p/6098604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!