javascript背景颜色按时变换
程序员文章站
2023-11-17 18:27:04
<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需刷新才能执行]
上一篇: php自动加载机制的深入分析
推荐阅读
-
asp下制做行背景颜色交替变换的表格
-
javascript背景颜色按时变换
-
asp下制做行背景颜色交替变换的表格
-
javascript背景颜色按时变换
-
使用 JavaScript 的 HTML 页面混合、根据在下拉列表框中选择的内容,决定页面效果,用户在下拉列表框中选择页面将要使用的背景颜色
-
利用JQuery和JS实现奇偶行背景颜色自定义效果_javascript技巧
-
JS实现在页面随时自定义背景颜色的方法_javascript技巧
-
JS实现点击颜色块切换指定区域背景颜色的方法_javascript技巧
-
JS实现点击颜色块切换指定区域背景颜色的方法_javascript技巧
-
js点击更换背景颜色或图片的实例代码_javascript技巧