javascript背景颜色按时变换
时间:2020-12-27 16:49:41|栏目:JavaScript代码|点击: 次
<head>
</head>
<body onload="setcolor()" >
<div id=mydiv style="font:12px sans-serif;width:300px;height:200px;">背景色测试</div>
<script>
function setcolor()
{
var colorString;
do{
colorString="#"+Math.floor(Math.random()*Math.pow(2,24)).toString(16);
}
while (colorString.length<7);
document.getElementById("mydiv").style.backgroundColor=colorString;
setTimeout(setcolor,100);
}
</script>
</body>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
</head>
<body onload="setcolor()" >
<div id=mydiv style="font:12px sans-serif;width:300px;height:200px;">背景色测试</div>
<script>
function setcolor()
{
var colorString;
do{
colorString="#"+Math.floor(Math.random()*Math.pow(2,24)).toString(16);
}
while (colorString.length<7);
document.getElementById("mydiv").style.backgroundColor=colorString;
setTimeout(setcolor,100);
}
</script>
</body>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
上一篇:JavaScript SHA-256加密算法详细代码
栏 目:JavaScript代码
本文标题:javascript背景颜色按时变换
本文地址:http://www.codeinn.net/misctech/37197.html