Fish Animation

Fish Animation is a jQuery plugin that transform a HTML5 canvas element into configurable fish animation using CreateJS library.

DEMOS


FEATURES

  • Works Great on any Device (Desktop, Tablet, Mobile).
  • Adjustable number of fish, color, scale, speed of swimming.
  • 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/fish-animation.js"></script>
                            
                        
Step 2: HTML markup
                            
    <canvas id="fishHolder" width="1000" height="500"></canvas>
                            
                        
Step 3: Call the JS
                            
    $(document).ready(function(){
        $('#fishHolder').fishAnimation();
    });
                            
                        

Fish Animation

Fish Animation is a jQuery plugin that transform a HTML5 canvas element into configurable fish animation using CreateJS library.
MAKE BY demonisblack