每隔一个星期二的 Javascript 倒计时器
我运营该网站的一个广播节目,每隔一个星期二早上 6 点到 7 点播出。 我正在尝试编写一个 Javascript 来倒计时我们的节目直播之前的天、小时、分钟和秒。
然后,当我们的节目直播时,我想使用 PHP 将倒计时器替换为图像。一小时后,早上7点,我们的演出结束了;然后我想让 PHP 脚本返回倒计时器。
我尝试搜索自动更新的倒计时脚本,但到目前为止还没有找到任何东西。
我将如何制作这些脚本?
I run the site for a radio show that airs every other Tuesday from 6 to 7am.
I'm trying to make a Javascript that will countdown the days, hours, minutes, and seconds till our show is live.
Then, when our show is live, I'd like to replace the countdown timer with an image using PHP. One hour later at 7am, our show is over; then I'd like the PHP script to return to the countdown timer.
I've tried to search around for countdown scripts that auto-update, but haven't found anything so far.
How would I make these scripts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
大约几个小时前,我完成了一个 JavaScript 计时器的开发。
它应该可以解决问题。
现在您所要做的就是配置正确的回调函数:
这是一个工作示例:http://jsfiddle.网/gion_13/8wxLP/1/
About a few hours ago i finished developing a javascript timer.
It should do the trick.
Now all you have to do is configure the proper callback function:
here's a working example : http://jsfiddle.net/gion_13/8wxLP/1/
您需要找到节目播出的第一个星期二上午 7 点的 GMT 时间,
并在客户端使用 new Date 将其转换为用户本地时间。
一旦你这样做了,就像任何其他倒计时一样。
此示例假设首场演出在美国东部时间 (EDT) 和 4 月 5 日举行。
(日期.UTC(2011,3,5,11))
You'll need to find the GMT time for 7am on the first tuesday the show is on,
and use new Date on the client to convert it to the user's local time.
Once you do that, it is like any other count down.
This example assumes EDT and April 5 for the first show.
(Date.UTC(2011, 3, 5, 11))
这将为您提供距离下一场演出还有多少秒(假设您的下一场演出是明天)。然后你需要从那里找到时间。
例如,从那时起,您可以设置每秒运行一次的超时,以将显示的秒数减少 1。
This will get you the number of seconds until your next show (assuming your next show is tomorrow). Then you need to find the time from there.
From that point, you can set a timeout to run every second to recude the number of seconds displayed by 1, for example.