其他分享
首页 > 其他分享> > 随机圆案例

随机圆案例

作者:互联网

随机圆案例

每次刷新默认生成一百个随机⚪,大小颜色位置随机。

Snipaste_2022-06-16_18-40-36

源码

<style>
    div {
      position: fixed;
      border-radius: 50%;
    }
</style>
<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>
<body>
</body>

标签:style,cl,widts,案例,随机,var,div,Math
来源: https://www.cnblogs.com/liyublogs/p/16383180.html