gpt4 book ai didi

javascript - 添加启动延迟

转载 作者:行者123 更新时间:2023-11-29 20:13:38 24 4
gpt4 key购买 nike

 function moveto(coordinates) {
step1 = coordinates[0];
step2 = coordinates[1];
var w = $(document).width();
var h = $(document).height();

$( "#full" )
.animate({left: -(step1 * w)}, 2000 )
.animate({top: -(step2 * h) }, 500 );
}
var randomNum = randomNumbers();
moveto(randomNum);

我需要添加这个功能的开始延迟,并在一定时间后重播

最佳答案

改变这个:

var randomNum = randomNumbers();
moveto(randomNum);

收件人:

function doRandomMove(){
var randomNum = randomNumbers();
moveto(randomNum);
}
setTimeout(function(){
doRandomMove()
setInterval(doRandomMove, 10 * 1000);
}, 1000);

这将在 1 秒时首先调用更改,并在第一次调用后 10 秒后不断重复。

关于javascript - 添加启动延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8242927/

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