Digital Clock

Digital Clock is a jQuery plugin that transform a HTML5 canvas element into configurable digital clock animation using CreateJS library, the digital clock is form by 48 blocks where it will transform to different numbers.

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',
                width:10,
                height:50
            }
        );
    });
                            
                        

Digital Clock

Digital Clock is a jQuery plugin that transform a HTML5 canvas element into configurable digital clock animation using CreateJS library, the digital clock is form by 48 blocks where it will transform to different numbers.
MAKE BY demonisblack