gpt4 book ai didi

javascript - 随机几秒后更改框颜色

转载 作者:行者123 更新时间:2023-11-28 19:32:07 25 4
gpt4 key购买 nike

我写了一个java脚本代码:

<html>
<head>
<style type="text/css">

#myDiv {
height: 150px;
width: 150px;
background-color: red;
}

</style>


</head>
<body>
<div id="myDiv"></div>

<script type="text/javascript">

function setColor(){
var x = '0123456789ABCDEF';
var y='#';
var i;
for(i=0; i<6; i++){
y = y+x[Math.round(Math.random()*15)];
}
document.getElementById("myDiv").style.backgroundColor=y;
}

var myVar = setInterval(function(){setColor()}, 1000);


</script>

</body>
</html>

它每 1 秒后更改一次框颜色,但我想在随机几秒后更改颜色。第一次说 1 秒后,然后是 0.5 秒后,5 秒后等等。我不想刷新页面来做到这一点。请帮忙!

最佳答案

Javascript函数

这个函数应该可以满足你的需要:

function doSomething() {}

(function loop() {
var rand = Math.round(Math.random() * (3000 - 500)) + 500;
setTimeout(function() {
//alert('A');
doSomething();
loop();
}, rand);
}());

它将以随机间隔doSomething():)

here's the Demo - 只需从警报中删除“//”即可查看其实际情况! :)

<小时/>

使用您的示例

这个JsFiddle使用您的函数来更改 div 的颜色:)

编辑

说明

第一行:(获取兰特)

// Returns a random number between min (inclusive) and max (exclusive)
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
// and so you will get a random number between the max and min values

第二行(setTimeout)

setTimeout(function() { 
//call this function

循环();

loop(); // this is using a recursive method function and so the whole method is called again/ over and over 

关于javascript - 随机几秒后更改框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26549979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com