简单的倒计时定时器与图像背景

时间:2016-04-26 04:35:28

标签: javascript css

我无法为简单的倒数计时器找到合适的CSS /脚本, 要求低于

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

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

由于

1 个答案:

答案 0 :(得分:0)

这就像你能得到的一样简单。纯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天。