🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

animateClick is a lightweight jQuery plugin which brings 5 cool click animations to your elements when clicking/tapping, heavily based on CSS3 and SVG drawing animation.


Documentation

animateClick

jQuery plugin to create animation on mouse click
Developed by Arun Thomas
www.ajarunthomas.com

Demo Download

Website

USAGE

Step 1 : Include js

<script type="text/javascript" src="js/jquery-1.12.0.min.js"></script> <script type="text/javascript" src="js/animateClick.js"></script> 

Step 2 : Activate Plugin

$(document).ready(function() {     $('#btn').animateClick(); }); 

more options

If you want to create a blue signal animation with a size of 12 then

$(document).ready(function() {     $('#btn').animateClick({         "color":"blue",         "animation":"signal",         "size":12     }); }); 

animations available

  1. Default animation if you don't specify one

2. signal
3. shoot
4. tick
5. cross

You May Also Like