gpt4 book ai didi

javascript - 模拟时钟的 setInterval()

转载 作者:行者123 更新时间:2023-11-30 07:45:49 25 4
gpt4 key购买 nike

我是 JavaScript 的新手,在使用 etInterval() 时遇到了问题。

我正在创建一个模拟时钟作为练习。我有一个函数 setTime(),它通过相应地旋转箭头来获取和显示时间。

我想一次又一次地执行这个功能。

这是我的代码:

    $(document).ready(function(){

function setTime(){
var d = new Date();
var hour = d.getHours();
var minute = d.getMinutes();
var hourRotation = hour * 30 + (minute / 2);
var minuteRotation = minute * 6;
$("#small").css({
"-webkit-transform": "rotate(" + hourRotation + "deg)",
"-moz-transform": "rotate(" + hourRotation + "deg)",
"-o-transform": "rotate(" + hourRotation + "deg)"
});
$("#big").css({
"-webkit-transform": "rotate(" + minuteRotation + "deg)",
"-moz-transform": "rotate(" + minuteRotation + "deg)",
"-o-transform": "rotate(" + minuteRotation + "deg)"
});
};
function clockStart(){
setInterval(setTime(),1000);
setTime();
}
clockStart();
});

我想了解这个方法以及如何使用它。我能找到的例子看起来很明显,但我仍然无法让它发挥作用。

最佳答案

您正在 setInterval() 中进行函数调用。

你想要做的是:

setInterval(setTime,1000);

关于javascript - 模拟时钟的 setInterval(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6774027/

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