美文网首页
js生成随机颜色方法

js生成随机颜色方法

作者: 海之深处爱之港湾 | 来源:发表于2021-07-25 09:44 被阅读0次
    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
         <button id="btn1">第一种</button>
         <button id="bnt2">第二种</button>
         <button id="btn3">第三种</button>
         <script>
             var btn1=document.getElementById('btn1');
             btn1.onclick=function(){
                 document.body.style.background=bg1()
             };
             var btn2=document.getElementById('bnt2');
             btn2.onclick=function(){
                 document.body.style.background=bg2();
             };
             var btn3=document.getElementById('btn3');
             btn3.onclick=function(){
                 document.body.style.background=bg3();
             };
             function bg1(){
                 return '#'+Math.floor(Math.random()*256).toString(10);
             }
             function bg2(){
                 return '#'+Math.floor(Math.random()*0xffffff).toString(16);
             }
             function bg3(){
                 var r=Math.floor(Math.random()*256);
                 var g=Math.floor(Math.random()*256);
                 var b=Math.floor(Math.random()*256);
                 return "rgb("+r+','+g+','+b+")";
             }
         </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:js生成随机颜色方法

          本文链接:https://www.haomeiwen.com/subject/jmvbmltx.html