Last active
August 29, 2015 14:15
-
-
Save tcarlsen/39506c6fd84f42c25d61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="/path/to/flipclock.css"> | |
<style> | |
.cd-container { | |
display: inline-block; | |
} | |
</style> | |
<div class="cd-container"> | |
<div class="countdown"></div> | |
</div> | |
<script src="/path/to/flipclock.min.js"></script> | |
<script> | |
var currentDate = new Date(); | |
var coutdownToDate = new Date('YYYY-MM-DD HH:MM:SS'); | |
var diff = coutdownToDate.getTime() / 1000 - currentDate.getTime() / 1000; | |
$('.countdown').FlipClock(diff, { | |
autoStart: true, | |
countdown: true, | |
showSeconds: false, | |
clockFace: 'DailyCounter', | |
language: 'danish' | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment