File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # TinyTip
2+
3+ Tiny tooltip jQuery plugin
4+
5+ - Very small code with zero magic
6+ - No CSS file
7+ - Tooltip any html element
8+
9+ ### Installation
10+
11+ You can install with bower:
12+
13+ ``` sh
14+ $ bower install tinytip
15+ ```
16+
17+ ### Demo & Documentation
18+
19+ Please Check [ TinyTip] ( http://sweefty.com/tinytip ) web page
20+
21+ ### Quick Usage
22+
23+ Make sure to include jQuery before loadin swTooltip.js file
24+
25+ ``` js
26+ $ (' .element' ).tinytip ({
27+ position : ' bottom' ,
28+ animation : ' +10' ,
29+ content : $ (' .drop-menu' ),
30+ fix : ' -20 -20' ,
31+ speed : 100 ,
32+ on : ' click' ,
33+ off: ' click' ,
34+ preventClose : true ,
35+ onLoad : function (e ){
36+ // e is the loaded tooltip element
37+ alert (' tool tip box loaded' );
38+ }
39+ });
40+ ```
41+
42+ ** Free Plugin by [ sweefty.com] ( http://sweefty.com ) **
43+
44+ License
45+ ----
46+ MIT
You can’t perform that action at this time.
0 commit comments