首页 > 代码库 > 点出漫天小星星
点出漫天小星星
<!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>
点出漫天小星星
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。