1.0.2 • Published 9 years ago

tooltip-module v1.0.2

Weekly downloads
21
License
-
Repository
github
Last release
9 years ago

Tooltip

Create simple or advanced, high performant Tooltips with minimal javascript and markup. This library is built using native vanilla javascript which means super fast performance. Supports IE10+, all major browsers and even mobile.

Usage

Create your Tooltip html:

<div class="my-tooltip">My Tooltip Content</div>
<button class="my-tooltip-toggle-btn">Toggle</button>

Then activate your tooltip with the following:

var tooltip = new Tooltip({
    el: document.body.getElementsByClassName('my-modal'),
    activeClass: 'my-tooltip-active',
    triggerClass: 'my-tooltip-toggle-btn'
});

tooltip.show(); // show the tooltip
tooltip.hide(); // hide the tooltip
1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago