├── Demo.html ├── Graphics └── logo.png ├── README.md ├── Source ├── FloatingTips.Dialog.js └── FloatingTips.js └── package.yml /Demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Some simple tips. Different position, always centered:
122 |123 | Default (top) | 124 | Bottom | 125 | Left | 126 | Right 127 |
128 | 129 |134 | You can place it also inside the target element: 135 | Try me 136 |
137 | 138 |A customized tip. Not centered, bigger arrow, customized content:
143 | 144 | 145 |An advanced (and very cool!) tip. HTML content:
150 | 151 | 152 | 153 | 163 | 164 |You can show tooltip on focus instead of cursor events:
168 | 169 |177 | Read Javascript comments on this demo or see 178 | docs 179 | for more! 180 |
181 |