fix typo
[openemr.git] / public / assets / jquery-modern-blink-0-1-3 / README.md
blob40f8cf57b40195fa441ac92a019e3f022338ef56
1 # Modern Blink
3 jQuery plugin utilizing CSS Animations. Because we all loved the <blink> tag!
5 Modern Blink will use CSS Animations in browsers supporting them and fallback to jQuery Animations in older browsers.
7 **Demo**: http://codepen.io/leonderijke/pen/bkgxi
9 ## Installation
11 Include Modern Blink after the jQuery library:
13 ```html
14 <script src="/path/to/jquery.modern-blink.js"></script>
15 ```
17 Or, install via Bower:
19 ```
20 bower install modern-blink
21 ```
23 ## Usage
25 Use Modern Blink like this on the desired elements:
27 ```js
28 $('.js-blink').modernBlink();
29 ```
31 ### Options
33 The following options can be passed to Modern Blink (defaults are shown):
35 ```js
36 $(element).modernBlink({
37         // Duration specified in milliseconds (integer)
38         duration: 1000,
40         // Number of times the element should blink ("infinite" or integer)
41         iterationCount: "infinite",
43         // Whether to start automatically or not (boolean)
44         auto: true
45 });
46 ```
48 ### Methods
50 Modern Blink provides the following public methods:
52 ```js
53 $(element).modernBlink('start'); // Will start the animation
54 $(element).modernBlink('stop'); // Will stop the animation
55 ```
57 ### Events
59 Modern Blink will attach the following event listeners to the element:
61 ```js
62 $(element).trigger('modernBlink.start'); // Will start the animation
63 $(element).trigger('modernBlink.stop'); // Will stop the animation
64 ```
66 ## Browser Support
68 Tested in:
69 * Chrome
70 * Safari
71 * Firefox
72 * Mobile Safari 5.1+
73 * Android browser 4.0+
74 * Internet Explorer 6+
76 ## License
78 MIT License