javascript ランダムな色を生成する

javascript ランダムな色を生成する

javascriptで、ランダムな色を生成するサンプルコードを記述してます。

環境

  • OS windows10 pro 64bit
  • Apache 2.4.43
  • ブラウザ chrome 103.0.5060.114

ランダムな色を生成

ランダムな色を生成するには、「0123456789ABCDEF」からランダムに文字を抽出していき
カラーコードを生成します。

実際に生成してみます。リロードするごとに、

<div id="sample" 
style="
height: 200px;
width: 200px;"></div>

<script>

function randColor() {

  let code = '0123456789ABCDEF';
  let str = '#';
  
  for (let i = 0; i < 6; i++) {
      str += code[Math.floor(Math.random() * code.length)];      
  }

  console.log(str)
  
  return str;

}

document.getElementById("sample").style.backgroundColor = randColor();

</script>

実行結果

サンプルコード

以下は、
「実行」ボタンをクリックした際に、背景色を変更するだけのサンプルコードとなります。

※cssには「tailwind」を使用して、アロー関数で関数は定義してます。

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

<head>
  <meta charset="utf-8">
  <title>mebeeサンプル</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://cdn.tailwindcss.com"></script>
</head>

<script>

  window.onload = () => {

    btn.onclick = () => { 

      let str = '#';

      [...Array(6)].forEach(() => str += '0123456789ABCDEF'[~~(Math.random() * '0123456789ABCDEF'.length)]); 
      
      btn.style.backgroundColor = str

    }

  }

</script>

<body>
  <div class="container mx-auto my-56 w-64 px-4">

    <div id="sample" class="flex flex-col justify-center">

      <button id="btn"
        class="mb-2 md:mb-0 bg-transparent hover:bg-sky-500 text-sky-700 font-semibold hover:text-white py-2 px-4 border border-sky-500 hover:border-transparent rounded">
        実行
      </button>

    </div>

  </div>
</body>

</html>

実行結果を確認すると、ランダムにからコードが適応されていることが確認できます。