我正在尝试向我的计数计时器添加里程表效果(如https://github.hubspot.com/odometer/docs/welcome/上所示),但是说明没有显示如何将其添加到计时器。我的计时器看起来有点像这样
<script>
// Set the date we're counting down to
var dateCountup = new Date("Jan 29, 2018 12:00:").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get todays date and time
var now = new Date().getTime();
// Find the distance between now an the count down date
var distance = now - dateCountup;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("dateCountEn").innerHTML = "Created " + days + " Days " + hours + " Hours "
+ minutes + " Minutes " + seconds + " Seconds " + "ago";
document.getElementById("dateCountPl").innerHTML = "stworzono " + days + " Dni " + hours + " Godzin "
+ minutes + " Minut " + seconds + " Sekund " + "temu";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("dateCount").innerHTML = "EXPIRED";
}
}, 1000);
`