gpt4 book ai didi

javascript - 带有图像背景的简单倒数计时器

转载 作者:行者123 更新时间:2023-11-28 05:59:22 25 4
gpt4 key购买 nike

我在为简单的倒数计时器找到合适的 CSS/脚本时遇到了麻烦,要求如下

  • 只有天数倒计时(不需要有小时、分钟和秒)
  • 能够使用我自己的图片作为背景

我已经尝试了很多在线搜索但是没有运气任何帮助将不胜感激!

谢谢

最佳答案

这很简单。纯 Javascript 解决方案。

http://codepen.io/partypete25/pen/PNdKBZ

today = new Date();
target = new Date("April 30, 2016");
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (target.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
document.write("There are only<br> <strong>" + daysLeft + " days </strong><br> until April 30th 2016<P>");

请注意,一旦到达最近 24 小时内,它将显示剩余 0 天。

关于javascript - 带有图像背景的简单倒数计时器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36855331/

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