JavaScript小案例-随机圆案例

随机圆案例

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

  • 效果图

Snipaste_2022-06-16_18-40-36

源码

  • 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>
posted @ 2022-06-16 19:25  抗争的小青年  阅读(108)  评论(0编辑  收藏  举报