我的翻页时钟走得太快,跳过了偶数。我怎样才能解决这个问题?

My flipclock goes too fast, and jumps over even numbers. How can I fix this?

我的flipclock.js走得太快了,跳过了偶数。

我已经对代码进行了试验,当我使用回调函数时似乎出了点问题。

var clock = $('#clock3').FlipClock(new Date("April 10, 2019 18:37:00"), {
  clockFace: 'DailyCounter',
  countdown: true,
  callbacks: {
    stop: function () {
      $("#myButton3Show").hide();
      $("#myButton3Hide").show();
    }
  }
});
<div class="endgame2">
  <img src="Pictures/endgame.png">
     <div id="clock3"></div>
         <a href="https://www.myvue.com/film/avengers-endgame" target="_blank" id="myButton3Show">About Movie</a>
         <a href="https://www.myvue.com/film/avengers-endgame" target="_blank" id="myButton3Hide" style ="display: none">Buy Ticket on Vue</a>
</div>

我想做的是在倒计时达到 0 并且电影上映时将 "About Movie" 按钮更改为 "Book Ticket on Vue"。

能用,只是时钟走得太快,跳过了偶数。

看起来这是一个 known bug,应该在最新版本中修复。

如果无法切换到较新版本,您可以尝试以下解决方法:

var next_show = new Date('2019-04-10T00:00:00');
var diff = next_show.getTime() - new Date().getTime();

var showtime = Math.floor(diff/1000);
var clock = $('#clock3').FlipClock({
    clockFace: 'DailyCounter',
    countdown: true,
    callbacks: {
      stop: function () {
        $("#myButton3Show").hide();
        $("#myButton3Hide").show();
      }
    }
});

clock.setTime(showtime);
clock.start();