1.0.0 • Published 8 years ago

tipsy-native v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
8 years ago

Tipsy Native

Downloads Latest Release License

Facebook-style tooltip javascript library.

Description:

tipsy native is a simple javascript library for generating Facebook-style tooltips.

This is almost a direct port to native javascript of tipsy by Jason Frame.

Documentation

http://digitlab.github.io/tipsy-native

Supported Browsers

// TODO:

Usage:

  1. Copy the contents of dist to the corresponding asset directories in your project.

  2. Insert the necessary elements in your document's <head> section, e.g.:

    <script src='/js/tipsy.js'></script>
    <link rel="stylesheet" href="/css/tipsy.css" type="text/css" />
  3. Initialise Tipsy in your document.onload, e.g.:

    <script type='text/javascript'>
        document.addEventListener("DOMContentLoaded", function(event) {
            Tipsy.watchSelector('a[rel=tipsy]');
        });
    </script>

Please refer to the docs directory for more examples and documentation.

License

Tipsy Native is licensed under The MIT License (MIT).