Getting Started
FlipClock is easy to get up and going fast. Simply instantiate a new
FlipClock
instance and pass a DOM node, the starting value, and some
options.
<div class="clock mt-3"></div>
<script>
const el = document.querySelector('.clock');
const clock = new FlipClock(el, {
face: 'TwentyFourHourClock'
});
</script>