1 Star 0 Fork 3

AlfaLee/大前端

forked from 高翔/大前端 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
谁让小球动起来案例.html 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
高翔 提交于 2021-08-23 11:19 . 修改总结错误若干处
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/alfalee_admin/big-front-end.git
[email protected]:alfalee_admin/big-front-end.git
alfalee_admin
big-front-end
大前端
master

搜索帮助