js如何生成随机位置不重复并且某个区域不能出现?

如图,灰色区域内随机出现,不重叠并且排除黄色区域,求解。

image.png

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }

    .demo {
      height: 350px;
      background: #f5f5f5;
      position: relative;
    }

    .demo .item {
      width: 50px;
      height: 50px;
      background: #f00;
      position: absolute;
      top: 0;
      left: 0;
    }

    .button {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: #ff0;
      margin: 0 auto;
    }
  </style>
</head>

<body>
  <div class="demo">
    <div class="item-list">

    </div>
    <div class="button"></div>
  </div>

  <script>
    let data = [1, 2, 3];
    let arr = [
      {
        top: 100,
        left: 0
      },
      {
        top: 0,
        left: 0
      },
      {
        top: 300,
        left: 150
      },
      {
        top: 350,
        left: 250
      }
    ]
    let resArr = '';
    data.forEach((v, i) => {
      console.log(sendNum(arr));
      resArr += `<div class="item" style="top:${sendNum(arr).top}px;left:${sendNum(arr).left}px">${v}</div>`
    });
    document.querySelector('.item-list').innerHTML = resArr;
    function sendNum(arr) { 
      return arr[Math.floor(Math.random() * arr.length)]; 
    };
  </script>
</body>

</html>
阅读 5.5k
2 个回答

不符合规则在来一次 ?

1、生命一个二维数组,用这个二维数组来表示页面中的坐标。

[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0]
]

2、将黄色区域的位置坐标,在二维数组中表示一下

[0,0,0,0,0,0,0],
[0,0,0,0,0,0,0],
[0,0,1,1,1,0,0],
[0,0,1,1,1,0,0],
[0,0,1,1,1,0,0]
]

3、红色方块出现一次就在二维数组中表示一次,当随机生成的坐标重复时,不显示

[1,0,0,0,0,0,0],
[0,1,0,0,0,1,0],
[0,0,1,1,1,0,0],
[0,0,1,1,1,0,0],
[0,0,1,1,1,0,0]
]

希望能帮到你

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题