NgTippy is an Angular 6+ wrapper directive for Tippy.js
npm install ng-tippyNgTippy is an Angular 6+ wrapper directive for Tippy.js
```
npm i ng-tippy
`javascript
...
import { TippyModule } from 'ng-tippy';
...
imports: [ TippyModule ]
`
`html`
show on mouseover or hoverover
`html`
show on mouseover or hoverover
`html
show on mouseover or hoverover
`
`javascript
...
import { TippyService } from 'ng-tippy';
...
constructor(private tippyService: TippyService) { }
ngOnInit(): void {
setTimeout(() => {
// provide the name of the tippy that you have defined in your template
this.tippyService.hideTippy('tippy');
}, 5000);
}
`
The template example
`html