ngx-deva-tooltip
v0.0.3
Published
![snhora](https://user-images.githubusercontent.com/104692440/183762133-540ba2fc-fcdb-4c76-8c23-9c395e4341e3.png)
Downloads
2
Maintainers
Readme
NGX-DEVA-TOOLTIP
https://user-images.githubusercontent.com/104692440/184020667-5fe1fc81-df56-4ef7-854d-bbeacc50198b.mp4
TOOLTIP
How to install
Below are ways to install the library using npm:
npm i ngx-deva-tooltip
How to use properties component
First import the module from the lib in the module you want to use it
imports: [
BrowserModule,
NgxDevaTooltipModule
],
<ngx-deva-tooltip
[top]="true"
description="Top direction"
bgColorTooltip="#ffa500"
colorTooltip="#800080"
[tabIndex]="0"
>
<input type="button" value="Hover Me" />
</ngx-deva-tooltip>
Properties
| Props | type | Description | | ------------------- | ------- | --------------------------------- | | top | boolean | Top direction | | left | boolean | Left direction | | bottom | boolean | Bottom direction | | right | boolean | Right direction | | description | string | Element description | | bgColorTooltip | string | Background color of tooltip | | colorTooltip | string | Color of tooltip | | tabIndex | number | Element that can receive input focus |