gpt4 book ai didi

javascript - d3.timer() 帧 - 减慢速度

转载 作者:行者123 更新时间:2023-12-01 01:43:04 26 4
gpt4 key购买 nike

是否可以减慢帧数

d3.timer(function(){alert("Hello"); }, 3000); ?

这里我们有 3 秒的延迟,然后它变得非常快。

例如

setInterval(function(){alert("Hello"); }, 3000);

我们可以将 3000 毫秒更改为 2000 毫秒,并且我们将每 2 秒而不是 3 秒持续发出警报。

非常感谢!

最佳答案

D3-timer 的 API 引用说:

d3.interval(callback[, delay[, time]]) <>

Like timer, except the callback is invoked only every delay milliseconds; if delay is not specified, this is equivalent to timer. A suitable replacement for setInterval that is guaranteed to not run in the background. The callback is passed the elapsed time.

您可以在这里找到它:github

就您而言:

d3.interval(function(){ alert("Hello") }, 3000);

关于javascript - d3.timer() 帧 - 减慢速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52224139/

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