55ok

Mini

Direktori : /home/bestphotography/public_html/Admin/assets/js/
Upload File :
Current File : /home/bestphotography/public_html/Admin/assets/js/countdown.js

"use strict";

// Countdown js

const second = 1000,

    minute = second * 60,

    hour = minute * 60,

    day = hour * 24;



var countDown = new Date('Jan 30, 2023 00:00:00').getTime(),

    x = setInterval(function() {



        var now = new Date().getTime(),

            distance = countDown - now;



            document.getElementById('days').innerText = Math.floor(distance / (day)),

            document.getElementById('hours').innerText = Math.floor((distance % (day)) / (hour)),

            document.getElementById('minutes').innerText = Math.floor((distance % (hour)) / (minute)),

            document.getElementById('seconds').innerText = Math.floor((distance % (minute)) / second);



    }, second);

Zerion Mini 1.0