如何實現元素背景的隨機映射?
P粉286046715
P粉286046715 2023-09-11 22:32:31
0
1
486

我想要隨機設定每個元素的背景顏色

但是當我將它插入以下程式碼中時,背景顏色變成了透明:

{
  modules.map((module, index) => (
    <div className='carousel-module shadow'
      style={{ background: "#" + Math.floor(Math.random()*16777215).toString(16)}}
    >
      <p className='module-element-text'>{module.name ? module.name : "N/A"}</p>
      <p className='module-element-text'>{module.code ? module.code : "N/A"}</p>
      <Button onClick={() => setShow(false)}
          variant="success" className='modules-list-button'>
          Load
      </Button>
    </div>
  ))
}

很高興聽到您對如何使其工作的建議。

P粉286046715
P粉286046715

全部回覆(1)
P粉190883225

這是我用來產生十六進位顏色的函數。你的方法可能會在顏色中引入Alpha通道,使其透明。

function randomHexColor() {
    let toHex = function (n) {
        let hex = n.toString(16);
        while (hex.length < 2) { hex = '0' + hex; }
        return hex;
    };
    let rr = toHex(Math.floor(Math.random() * 256));
    let gg = toHex(Math.floor(Math.random() * 256));
    let bb = toHex(Math.floor(Math.random() * 256));
    return '#' + rr + gg + bb;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!