Skip to content

Instantly share code, notes, and snippets.

@lynsei
Created December 17, 2015 06:45
Show Gist options
  • Save lynsei/cae96ae912547301302a to your computer and use it in GitHub Desktop.
Save lynsei/cae96ae912547301302a to your computer and use it in GitHub Desktop.
Colored Countdown
<div id="timer">
<div id="days"></div>
<div id="hours"></div>
<div id="minutes"></div>
<div id="seconds"></div>
</div>
function makeTimer() {
var endTime = new Date("August 26, 2013 18:00:00 PDT");
var endTime = (Date.parse(endTime)) / 1000;
var now = new Date();
var now = (Date.parse(now) / 1000);
var timeLeft = endTime - now;
var days = Math.floor(timeLeft / 86400);
var hours = Math.floor((timeLeft - (days * 86400)) / 3600);
var minutes = Math.floor((timeLeft - (days * 86400) - (hours * 3600 )) / 60);
var seconds = Math.floor((timeLeft - (days * 86400) - (hours * 3600) - (minutes * 60)));
if (hours < "10") { hours = "0" + hours; }
if (minutes < "10") { minutes = "0" + minutes; }
if (seconds < "10") { seconds = "0" + seconds; }
$("#days").html(days + "<span>Days</span>");
$("#hours").html(hours + "<span>Hours</span>");
$("#minutes").html(minutes + "<span>Minutes</span>");
$("#seconds").html(seconds + "<span>Seconds</span>");
}
setInterval(function() { makeTimer(); }, 1000);
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
@import url(http://fonts.googleapis.com/css?family=Covered+By+Your+Grace);
#days {
font-size: 200px;
color: #db4844;
}
#hours {
font-size: 150px;
color: #f07c22;
}
#minutes {
font-size: 100px;
color: #f6da74;
}
#seconds {
font-size: 50px;
color: #abcd58;
}
div {
display: inline-block;
line-height: 1;
padding: 20px;
font-size: 40px;
}
span {
display: block;
font-size: 20px;
color: white;
}
body {
text-align: center;
font-family: 'Covered By Your Grace', cursive;
color: white;
background: #222;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment