ttips

1.0.2 • Public • Published

ttips

Build Status Inline docs Dependency Status

Simple and lightweight tooltip module.

Docs and Examples

minified ~ 3kb, minified and gzipped ~ 1kB

Install

npm i ttips

Usage

HTML:

Put a containter with a .ttip class behind the element that should trigger the tooltip (previousElementSibling selects the tooltip target).

<div>Tooltip target</div>
<div class="ttip">Tooltip content</div>
 
<!-- Position the tooltip via data-attribute, can be 'left', 'top' or 'right' and defaults to bottom -->
<div>Tooltip target</div>
<div class="ttip" data-ttip-position="left">Tooltip content</div>

JS:

import ttips from 'ttips'

ttips.initialize();    // initialize the tooltips
ttips.update();        // update the tooltips, e.g after a dom change
ttips.hide();          // hide tooltip, does nothing if no tooltip is visible
ttips.destroy();       // destroy ...

Licence

MIT

Readme

Keywords

Package Sidebar

Install

npm i ttips

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

19 kB

Total Files

12

Last publish

Collaborators

  • stbaer