Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gustafguner/angular-tooltip

An easy-to-use Angular (6+) component for displaying tooltips
https://github.com/gustafguner/angular-tooltip

angular angular-component angular-library angular6 angular6-component angular6-library tooltip

Last synced: about 2 months ago
JSON representation

An easy-to-use Angular (6+) component for displaying tooltips

Awesome Lists containing this project

README

        

# angular-tooltip

An easy-to-use Angular (6+) component for displaying tooltips.

## Check it out in action
[Here](https://gustafguner.github.io/angular-tooltip/)

## Installation

Install it via NPM

```shell
npm install --save @gustafguner/angular-tooltip
```

Then import the `AngularTooltipModule` and add it to `imports` in your `AppModule`.

```javascript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

import { AngularTooltipModule } from '@gustafguner/angular-tooltip';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AngularTooltipModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```

## Usage

### Basic usage
In order to use `angular-tooltip` you only have to wrap the component `` around the element that you want to attach a tooltip to. The following example demonstrates how to add a tooltip to an `` element.

```html

Hover me

```

The attribute `tooltip-text` controls the text content of the tooltip. The attribute `tooltip-direction` controls in which direction the tooltip will appear. `tooltip-direction` can be set to either `top`, `right`, `bottom` or `left`.