All Projects → 720kb → Angular Tooltips

720kb / Angular Tooltips

Angularjs tooltips module, add tooltips to your elements - https://720kb.github.io/angular-tooltips

Projects that are alternatives of or similar to Angular Tooltips

angular-downloader
Angular Downloader is an angularjs directive that enables you to manage browser download - https://720kb.github.io/angular-downloader
Stars: ✭ 16 (-95.52%)
Mutual labels:  angularjs, directive, angular-directives
Angular Datepicker
Angularjs datepicker module, generate a datepicker on your input element - https://720kb.github.io/angular-datepicker
Stars: ✭ 486 (+36.13%)
Mutual labels:  directive, angular-directives, angularjs
Angular Fx
Angular CSS3 animation directives (ngfx-bounce, ngfx-shake, ngfx-flip, ngfx-pulse and more ...) https://720kb.github.io/angular-fx
Stars: ✭ 181 (-49.3%)
Mutual labels:  angular-directives, angularjs
Angular Query Builder
Dynamic query building UI written in Angular.
Stars: ✭ 211 (-40.9%)
Mutual labels:  angular-directives, angularjs
Ngx Infinite Scroll
Infinite Scroll Directive for Angular
Stars: ✭ 1,024 (+186.83%)
Mutual labels:  directive, angular-directives
Angular Prest
pREST component for Angular
Stars: ✭ 16 (-95.52%)
Mutual labels:  angular-directives, angularjs
Angular Promise Buttons
Chilled loading buttons for AngularJS
Stars: ✭ 156 (-56.3%)
Mutual labels:  angular-directives, angularjs
Ngx Quill Editor
🍡@quilljs editor component for @angular
Stars: ✭ 234 (-34.45%)
Mutual labels:  angular-directives, angularjs
Semanticui Angular
Angular Directives for Semantic UI
Stars: ✭ 58 (-83.75%)
Mutual labels:  angular-directives, angularjs
angular-simple-slider
An AngularJS directive providing a simple slider functionality
Stars: ✭ 15 (-95.8%)
Mutual labels:  angularjs, directive
angular-barcode
An angular directive for lindell's JsBarcode
Stars: ✭ 25 (-93%)
Mutual labels:  angularjs, directive
angular-openweather-app
A weather forecast app written in AngularJS
Stars: ✭ 54 (-84.87%)
Mutual labels:  angularjs, angular-directives
angular-datetime-inputs
📅 Angular directives for datetime inputs
Stars: ✭ 20 (-94.4%)
Mutual labels:  directive, angular-directives
ng-contenteditable
ng-contenteditable
Stars: ✭ 41 (-88.52%)
Mutual labels:  angularjs, angular-directives
angular-mapboxgl-directive
AngularJS directive for Mapbox GL
Stars: ✭ 43 (-87.96%)
Mutual labels:  angularjs, directive
Angularjs Springmvc Sample
A RESTful sample using AnguarJS/Bootstrap as frontend and Spring MVC as REST API producer
Stars: ✭ 292 (-18.21%)
Mutual labels:  angularjs
Simplcommerce
A simple, cross platform, modularized ecommerce system built on .NET Core
Stars: ✭ 3,474 (+873.11%)
Mutual labels:  angularjs
Draggable Vue Directive
Vue2 directive that handles drag & drop
Stars: ✭ 286 (-19.89%)
Mutual labels:  directive
V Track
🕹 A manual tracking decoupling plugin based on Vue directive / 一个基于Vue指令实现的埋点解耦插件~
Stars: ✭ 277 (-22.41%)
Mutual labels:  directive
Angularjs Eclipse
AngularJS Eclipse Plugin
Stars: ✭ 336 (-5.88%)
Mutual labels:  angularjs

Angular Tooltips

Join the chat at https://gitter.im/720kb/angular-tooltips

Angular Tooltips is an AngularJS directive that generates a tooltip on your element.

The angular tooltips is developed by 720kb.

Requirements

AngularJS v1.3+

Screen

Angular tooltips

Browser support

Chrome Firefox IE Opera Safari
IE9 +

Load

To use the directive, include the Angular Tooltips javascript and css files in your web page:

<!DOCTYPE HTML>
<html>
<head>
  <link href="dist/angular-tooltips.min.css" rel="stylesheet" type="text/css" />
</head>
<body ng-app="app">
  //.....
  <script src="dist/angular-tooltips.min.js"></script>
</body>
</html>

Installation

Bower

$ bower install angular-tooltips --save

npm

$ npm install angular-tooltips --save

then load the js files in your html

Add module dependency

Add the 720kb.tooltips module dependency

angular.module('app', [
  '720kb.tooltips'
 ]);

Call the directive wherever you want in your html page

<a href="#" tooltips tooltip-template="tooltip">Tooltip me</a>

Doc

Option Type Default Description
tooltip-side="" String('left','right','top','bottom','top left','top right','bottom left','bottom right') 'top' Set your tooltip to show on left or right or top or bottom or top left or top right or bottom left or bottom right position
tooltip-template="" String() '' Set your tooltip template (HTML or just Text)
to know: don't use it together with tooltip-template-url attribute, use only one of them
tooltip-template-url="" String() '' Set your external tooltip template PATH
to know: don't use it together with tooltip-template attribute, use only one of them
tooltip-template-url-cache="" String(Boolean) false This attribute stores and retrieves the template from the cache
tooltip-controller="" String() '' Set a controller to your external tooltip template
tooltip-smart="" String(Boolean) false Set the tooltip to automatically search the best position on the screen
tooltip-show-trigger="" String('event1 event2') 'mouseover' Show the tooltip on specific event/events
tooltip-hide-trigger="" String('event1 event2') 'mouseleave' Hide the tooltip on specific event/events
tooltip-close-button="" String(Boolean) false Enable the tooltip close button
tooltip-class="" String() '' Set custom tooltip CSS class/classes
tooltip-size="" String('large', 'small') 'medium' Set your tooltip dimensions
tooltip-speed="" String('fast', 'slow', 'medium') 'medium' Set your tooltip show & hide transition speed
tooltip-hidden="" String(Boolean) false Hide (at all) the tooltip
tooltip-append-to-body="" String(Boolean) false This attribute clones the tooltip and append this directly on body. This enables the tooltip position also, for instance, if you have an scrolling area. This option does heavy javascript calculation.
tooltip-show="" String(Boolean) false Show/Hide the tooltip "manually"

Globals

Sometimes you may need to set all of your tooltips options in one place, you can achieve this using tooltipsConfProvider like this:

.config(['tooltipsConfProvider', function configConf(tooltipsConfProvider) {
  tooltipsConfProvider.configure({
    'smart': true,
    'size': 'large',
    'speed': 'slow',
    'tooltipTemplateUrlCache': true
    //etc...
  });
}])

Example

Live demo

Theming

You can create your own theme by editing the default SASS file lib/angular-tooltips.scss or just editing the default CSS file dist/angular-tooltips.css.

Contributing

We will be much grateful if you help us making this project to grow up. Feel free to contribute by forking, opening issues, pull requests etc.

License

The MIT License (MIT)

Copyright (c) 2014 Filippo Oretti, Dario Andrei

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].