Wednesday, 16 October 2019

<div id="countdown"> </div>

<div id="download">Download Rebecca Black now!</div>




<script>
window.onload = function() {
    var countdownElement = document.getElementById('countdown'),
        downloadButton = document.getElementById('download'),
        seconds = 10,
        second = 0,
        interval;

    downloadButton.style.display = 'none';

    interval = setInterval(function() {
        countdownElement.firstChild.data = 'You can start your download in ' + (seconds - second) + ' seconds';
        if (second >= seconds) {
            downloadButton.style.display = 'block';
            Interval(interval);
        }

        second++;
    }, 1000);
}
</script>

No comments:

Post a Comment