为了账号安全,请及时绑定邮箱和手机立即绑定

Javascript倒计时在不同设备上不同步

Javascript倒计时在不同设备上不同步

aluckdog 2022-10-21 17:28:16
我正在为产品发布站点开发倒计时,因此确保同步准确很重要。在我的笔记本电脑上的 netlify 网站上运行它时,它可以工作,并且与在线倒计时相比,它在很大程度上是准确的。但是,当我在手机上打开页面时,时间完全不同步。整个倒计时javascript如下。 有人能想到解决办法吗?//countdownconst countdown = document.querySelector('.countdown');// Set Launch Date (ms)const launchDate = new Date('June 30, 2020 00:00:00').getTime();// Update every secondconst intvl = setInterval(() => {  // Get todays date and time (ms)  const now = new Date().getTime();  // Distance from now and the launch date (ms)  const distance = launchDate - now;  // Time calculation  const days = Math.floor(distance / (1000 * 60 * 60 * 24));  const hours = Math.floor(    (distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)  );  const mins = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));  const seconds = Math.floor((distance % (1000 * 60)) / 1000);  // Display result  countdown.innerHTML = `     <div>${days}<span>Days</span></div>      <div>${hours}<span>Hours</span></div>     <div>${mins}<span>Minutes</span></div>     <div>${seconds}<span>Seconds</span></div>  `;  // If launch date is reached  if (distance < 0) {    // Stop countdown    clearInterval(intvl);    // Style and output text    countdown.style.color = '#17a2b8';    countdown.innerHTML = 'Launched!';    let modal = document.querySelector('.modalDialog');    modal.classList.add('HideModalClass');  }}, 1000);
查看完整描述

1 回答

?
倚天杖

TA贡献1828条经验 获得超3个赞

new Date().getTime();将获取运行它的机器上的时间——如果它在浏览器中运行,这将是用户计算机的本地时间。



查看完整回答
反对 回复 2022-10-21
  • 1 回答
  • 0 关注
  • 78 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信