代码拉取完成,页面将自动刷新
同步操作将从 高翔/大前端 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>谁让小球动起来</title>
<style type="text/css">
body{
margin: 0;
}
#box {
position: relative;
height: 100vh;
}
.circle {
border-radius: 50%;
position: absolute;
z-index: 2;
}
</style>
</head>
<body>
<div id="box"></div>
</body>
<script type="text/JavaScript">
window.onload=function(){
for(let i=0;i<12;i++){
new Circle()
}
}
class Circle{
constructor() {
this.r=this.randomNum(20,100);
this.x=this.randomNum(0,window.innerWidth-200);
this.y=this.randomNum(0,window.innerHeight-200);
this.color=this.randomColor();
this.createEl()
}
createEl(){
this.circle=document.createElement('div');
let {circle,r,x,y,color}=this;
circle.classList.add('circle');
circle.style.width=`${r*2}px`;
circle.style.height=`${r*2}px`;
circle.style.backgroundColor=`${color}`;
circle.style.left=`${x}px`;
circle.style.top=`${y}px`;
box.appendChild(circle)
}
// 取指定范围随机数
randomNum(min,max){
let mun=Math.floor(Math.random() * (max - min + 1) + min);
return mun
}
// 去随机的十六进制颜色:如#d51826
randomColor(){
var r = Math.floor(Math.random()*256);
var g = Math.floor(Math.random()*256);
var b = Math.floor(Math.random()*256);
var color = '#'+r.toString(16)+g.toString(16)+b.toString(16);
return color;
}
}
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。