nodebook/20191013/test1.html
2019-10-13 14:54:27 +08:00

54 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
/* 使用通配符浪费性能,尽量不使用 */
* {
margin: 0;
padding: 0;
}
div {
width:400px;
height:400px;
background-color: #000;
color: #ffffff;
margin: 50px;
position: relative;
}
div span {
position: absolute;
left: 0;
top: 0;
}
</style>
</head>
<body>
<input type="button" value="星星点点" id="btn">
<div id="dv">
<!-- 可以做一个好看的星星,方便操作 -->
<!-- <span>※</span> -->
</div>
<script type="text/javascript">
document.getElementById('btn').onclick = function() {
// 定义'dv',优化性能
var dv = document.getElementById('dv');
//每隔一段时间添加一次
//创建定时器
setInterval(function() {
//动态的向div内添加一颗星星
dv.innerHTML = "<span>※</span>"
//每间隔一段时间随机生成坐标 [0,400]
var numX = parseInt(Math.random()*401);
var numY = parseInt(Math.random()*401);
dv.firstElementChild.style.left = numX + 'px';
dv.firstElementChild.style.top = numY + 'px';
}, 10)
}
</script>
</body>
</html>