gpt4 book ai didi

javascript - FlipClock:如何设置 EST 时间

转载 作者:行者123 更新时间:2023-12-03 10:35:20 27 4
gpt4 key购买 nike

我正在使用flipclock,我想在其上设置东部时间。我该如何做到这一点?我已放置了 moment.js,我可以使用它来获取当前的东部时间。但问题是,我不知道要向 flipclock 对象的 setTime() 方法传递什么。

最佳答案

flipclock setTime 方法需要一个时间,并且按照api reference ,这是:

time

(int) The current time (in seconds)

因此,要获取当前时间(以秒为单位),您可以获取 Date 对象并执行 getTime()/1000

var currentTimeInSeconds = new Date().getTime() / 1000; // or use your Momentjs date

并将其传递给您的翻转时钟:

flipclock.setTime(currentTimeInSeconds)

关于javascript - FlipClock:如何设置 EST 时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29016223/

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