Difference between revisions of "Widget:Countdown"

From Octopath Traveler Speedruns
Jump to navigation Jump to search
Line 1: Line 1:
<span><!--{$time}--> ET</span><br />
<span><!--{$time}--></span><br />
<span id="countdown">-1d -1h -1m -1s</span>
<span id="countdown">-1d -1h -1m -1s</span>


<script>
<script>
// Modified version of https://www.w3schools.com/howto/howto_js_countdown.asp
// Modified version of https://www.w3schools.com/howto/howto_js_countdown.asp
var countDownDate = new Date("<!--{$time}--> ET").getTime();
var countDownDate = new Date("<!--{$time}-->").getTime();


// Update the count down every 1 second
// Update the count down every 1 second

Revision as of 03:50, 27 January 2019


-1d -1h -1m -1s

<script> // Modified version of https://www.w3schools.com/howto/howto_js_countdown.asp var countDownDate = new Date("").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 and the count down date
 var distance = countDownDate - now;
 // Time calculations for days, hours, minutes
 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));
 // Display the result in the element with id="countdown"
 if (days > 0) {
   document.getElementById("countdown").innerHTML = "(In about " + days + " days and " + hours + " hours)";
 } else if (days < 0) {
   document.getElementById("countdown").innerHTML = "(In about " + hours + " hours and " + minutes + " minutes)";
 } else if (distance < 0) {
   clearInterval(x);
   document.getElementById("countdown").innerHTML = "The race has ended.";
 }

}, 1000); </script>