@@ -40,24 +40,26 @@ To use css3 animation effects please include [Animate.css](http://daneden.github
40
40
41
41
##Usage
42
42
43
- | Name | Default | Description |
44
- | ----------------| --------------| -----------------------------------------------------------------------------------------------------|
45
- | speed | 400 | integer - Duration of the fade effect in ms |
46
- | background | '#55b555' | Background color of the tooltip, it can be hex, rgb, rgba, color name |
47
- | color | '#ffffff' | Text color of the tooltip, it can be hex, rgb, rgba, color name |
48
- | position | 'top' | Initial position of the tooltip, available positions 'top', 'bottom', 'left', 'right' |
49
- | width | 200 | Width of the tooltip in px |
50
- | delay | 200 | Delay before showing the tooltip in ms |
51
- | animationIn | '' | CSS3 animation effect to show the tooltip using [ Animate.css] ( http://daneden.github.io/animate.css ) |
52
- | animationOut | '' | CSS3 animation effect to hide the tooltip using [ Animate.css] ( http://daneden.github.io/animate.css ) |
53
- | offsetX | 0 | Offset value of the tooltip on X axis |
54
- | offsetY | 0 | Offset value of the tooltip on Y axis |
55
- | content | null | The content of the tooltip, can be text, html or whatever you want |
56
- | ajaxContentUrl | null | Url for Ajax content |
57
- | useTitle | true | To use the default title attribute as content (true,false) |
58
- | onBeforeShow | function(){} | Function to be executed before tipso is shown |
59
- | onShow | function(){} | Function to be executed after tipso is shown |
60
- | onHide | function(){} | Function to be executed after tipso is hidden |
43
+ | Name | Default | Description |
44
+ | ----------------| --------------| ------------------------------------------------------------------------------------------------------------------------------------|
45
+ | speed | 400 | integer - Duration of the fade effect in ms |
46
+ | background | '#55b555' | Background color of the tooltip, it can be hex, rgb, rgba, color name |
47
+ | color | '#ffffff' | Text color of the tooltip, it can be hex, rgb, rgba, color name |
48
+ | position | 'top' | Initial position of the tooltip, available positions 'top', 'bottom', 'left', 'right' |
49
+ | width | 200 | Width of the tooltip in px or % (for % add the value in quotes ex.'50%') |
50
+ | maxWidth | '' | max-width of the tooltip in px or % (for % add the value in quotes ex.'50%'). For usage you need to set width to '', false or null |
51
+ | delay | 200 | Delay before showing the tooltip in ms |
52
+ | animationIn | '' | CSS3 animation effect to show the tooltip using [ Animate.css] ( http://daneden.github.io/animate.css ) |
53
+ | animationOut | '' | CSS3 animation effect to hide the tooltip using [ Animate.css] ( http://daneden.github.io/animate.css ) |
54
+ | offsetX | 0 | Offset value of the tooltip on X axis |
55
+ | offsetY | 0 | Offset value of the tooltip on Y axis |
56
+ | tooltipHover | false | Abillity to interact with the tooltip content |
57
+ | content | null | The content of the tooltip, can be text, html or whatever you want |
58
+ | ajaxContentUrl | null | Url for Ajax content |
59
+ | useTitle | true | To use the default title attribute as content (true,false) |
60
+ | onBeforeShow | function(){} | Function to be executed before tipso is shown |
61
+ | onShow | function(){} | Function to be executed after tipso is shown |
62
+ | onHide | function(){} | Function to be executed after tipso is hidden |
61
63
62
64
> Additionaly you can use ` data-tipso ` instead of the title attribute for the tooltip content ( set ` useTitle: false ` )
63
65
0 commit comments