Skip to content

theodev3478/tooltips-angularjs

Repository files navigation

tooltips-angularjs-theo

Tooltips for any element using any html in AngularJS with no requirements.

Installation

Install through bower

bower install angularjs-tooltips-theo

or npm

npm install angularjs-tooltips-theo

Include the library files

<link rel="stylesheet" href="bower_components/dist/angular-tooltips.css" />
<script src="bower_components/dist/angular-tooltips.js"></script>

Add the angular model tooltips

angular.module('app', ['tooltips'])

Usage

Just add a normal title attribute and it will be overridden.

<i class="fa fa-star" title="This is a tooltip!"></i>

The direction of the tooltip can be specified using title-direction with the options: top, top-right, right-top, right, right-bottom, bottom-right, bottom, bottom-left, left-bottom, left, left-top, top-left

<i class="fa fa-star" title="This is a tooltip!" title-direction="right"></i>

The direction of the tooltip will automatically swap if the tooltip will sit outside of the window bounds. To stop this happening and force the direction set the fixed-position option

<i class="fa fa-star" title="This is a tooltip!" title-direction="right" fixed-position="true"></i>

Demo

Requrements

None!!

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published