随机圆案例
作者:互联网
随机圆案例
每次刷新
默认生成一百个随机⚪,大小
,颜色
,位置
随机。
- 效果图
源码
- css
<style>
div {
position: fixed;
border-radius: 50%;
}
</style>
- js
<script>
for (var i = 0; i < 100; i++) {
//创建元素
var div = document.createElement("div")
div.classList.add("div")
//
var widts = Math.random() * 50 + 30
var tops = Math.random() * (innerHeight - widts)
var lefts = Math.random() * (innerWidth - widts)
console.log(tops);
console.log(lefts);
div.style.width = widts + "px"
div.style.height = widts + "px"
div.style.left = lefts + "px"
div.style.top = tops + "px"
//0-255
function cl() {
return col1 = Math.floor(Math.random() * 256)
}
var r = cl()
var g = cl()
var b = cl()
div.style.backgroundColor = `rgb(${r},${g},${b})`
document.body.append(div)
}
</script>
- html
<body>
</body>
标签:style,cl,widts,案例,随机,var,div,Math 来源: https://www.cnblogs.com/liyublogs/p/16383180.html