码迷,mamicode.com
首页 > Web开发 > 详细

JS---Math.Random()*10--[0,10)随机变颜色

时间:2017-09-24 17:21:15      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:dom   col   doc   log   red   rip   doctype   amp   pre   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>随机显示颜色</title>
    <style>
        #div1{
            width: 100px;
            height: 100px;
        }
    </style>
</head>
<body onload="change()">
<div id="div1"></div>

</body>
<script>
    function change(){
        var i=Math.random()*10;
        var div1=document.getElementById("div1");
        if(0<i<4){
            div1.style.backgroundColor="red";
        }
        if(4<=i&&i<7){
            div1.style.backgroundColor="yellow";
        }
        if(7<=i&&i<10){
            div1.style.backgroundColor="green";
        }
    }
</script>
</html>

 

JS---Math.Random()*10--[0,10)随机变颜色

标签:dom   col   doc   log   red   rip   doctype   amp   pre   

原文地址:http://www.cnblogs.com/Andy-/p/7587599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!