You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| speed | 400 | integer - Duration of the fade effect in ms |
46
+
| size | '' | Tipso Bubble size classes (string: 'tiny', 'small', 'default', 'large') or you can make your own classes |
47
+
| background | '#55b555' | Background color of the tooltip, it can be hex, rgb, rgba, color name |
48
+
| titleBackground | '#333333' | Background color of the tooltip title, it can be hex, rgb, rgba, color name |
49
+
| color | '#ffffff' | Text color of the tooltip, it can be hex, rgb, rgba, color name |
50
+
| titleColor | '#ffffff' | Text color of the tooltip title, it can be hex, rgb, rgba, color name |
51
+
| titleContent | '' | The content of the tooltip title, can be text, html or whatever you want |
52
+
| showArrow | true | Ability to show/hide the arrow of the tooltip (true, false) |
53
+
| position | 'top' | Initial position of the tooltip, available positions 'top', 'bottom', 'left', 'right' |
54
+
| width | 200 | Width of the tooltip in px or % (for % add the value in quotes ex.'50%') |
55
+
| 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 |
56
+
| delay | 200 | Delay before showing the tooltip in ms |
57
+
| animationIn | '' | CSS3 animation effect to show the tooltip using [Animate.css](http://daneden.github.io/animate.css)|
58
+
| animationOut | '' | CSS3 animation effect to hide the tooltip using [Animate.css](http://daneden.github.io/animate.css)|
59
+
| offsetX | 0 | Offset value of the tooltip on X axis |
60
+
| offsetY | 0 | Offset value of the tooltip on Y axis |
61
+
| tooltipHover | false | Abillity to interact with the tooltip content |
62
+
| content | null | The content of the tooltip, can be text, html or whatever you want |
63
+
| ajaxContentUrl | null | Url for Ajax content |
64
+
| contentElementId | null | Normally used for picking template scripts |
65
+
| useTitle | true | To use the default title attribute as content (true, false) |
66
+
| templateEngineFunc | null | A function that compiles and renders the content |
67
+
| onBeforeShow | function(){} | Function to be executed before tipso is shown |
68
+
| onShow | function(){} | Function to be executed after tipso is shown |
69
+
| onHide | function(){} | Function to be executed after tipso is hidden |
63
70
64
71
> Additionaly you can use `data-tipso` instead of the title attribute for the tooltip content ( set `useTitle: false` )
65
72
73
+
> You can set all the options via `data-tipso` attribute. For example if you want to change the background you will add `data-tipso-background="#555555"` to the element.
0 commit comments