DEMOS
FEATURES
- Works Great on any Device (Desktop, Tablet, Mobile).
- Ready to use with assets included.
- Easy to replace your own assets.
- Adjustable color, position, speed, for each bottle or glasses.
- All options, methods and events are documented.
- Make with CreateJS
HOW TO USE
Step 1: Link required files
<script src="js/jquery.min.js"></script>
<script src="js/createjs.min.js"></script>
<script src="js/digital-clock.js"></script>
Step 2: HTML markup
<canvas id="clockHolder" width="1000" height="500"></canvas>
Step 3: Call the JS
$(document).ready(function(){
$('#clockHolder').digitalClock({colour:'#8F44AD',
blockWidth:10,
blockHeight:50});
});