Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zyra/ionic-tooltips
Tooltips module for Ionic Apps
https://github.com/zyra/ionic-tooltips
ionic
Last synced: 3 months ago
JSON representation
Tooltips module for Ionic Apps
- Host: GitHub
- URL: https://github.com/zyra/ionic-tooltips
- Owner: zyra
- License: mit
- Created: 2017-03-27T14:44:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T00:17:41.000Z (almost 6 years ago)
- Last Synced: 2024-04-14T04:49:58.929Z (10 months ago)
- Topics: ionic
- Language: TypeScript
- Homepage:
- Size: 268 KB
- Stars: 93
- Watchers: 10
- Forks: 55
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Ionic Tooltips
[![npm](https://img.shields.io/npm/l/ionic-tooltips.svg)](https://www.npmjs.com/package/ionic-tooltips/)
[![npm](https://img.shields.io/npm/dt/ionic-tooltips.svg)](https://www.npmjs.com/package/ionic-tooltips)
[![npm](https://img.shields.io/npm/dm/ionic-tooltips.svg)](https://www.npmjs.com/package/ionic-tooltips)Tooltips module for apps built with Ionic Framework.
## Compatibility
Versions above 4.0.0 support Ionic 4 only. For older versions please use the `ionic3` branch.
## Demo
Below is a gif showing the module in action, you can also clone the example project here: https://github.com/zyra/ionic-tooltips-example
![Ionic Tooltips Demo](https://github.com/zyra/ionic-tooltips-example/blob/master/ionic-tooltips.gif?raw=true)
## Examples
The module can be used to display tooltips for any element in your app. It also provides a special treatment for buttons in the header navigation (inspired by Google's apps).
Here's a quick example to show a tooltip below a button:
```html
Press me to see a tooltip
```
And here's another example to show a tooltip below a nav button:
```html
Page title
```
## Installation
1. Install this module by running the following command:
```shell
npm i ionic-tooltips@beta
```2. Import `TooltipsModule` in your `@NgModule`. If you are using lazy module loading, then you need to import it in the modules where it's used.
```ts
import { TooltipsModule } from 'ionic-tooltips';@NgModule({
...
imports: [
...
TooltipsModule.forRoot()
]
})
export class MyModule { ... }
```3. Import `BrowserAnimationsModule` in your app's main `@NgModule`.
```ts
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';@NgModule({
...
imports: [
...
BrowserAnimationsModule
]
})
```Now you're ready to use this module. See information below for usage.
## Usage
The `tooltip` directive takes a string, which will be used as the tooltip text. To use HTML in your tooltip, you need to pass the content through the `[tooltipHtml]` directive documented below. When using the `tooltip` directive, you can also use the following inputs:
#### `tooltipHtml`
(string) specifies HTML to use inside the tooltip. This will override any value you passed with the `[tooltip]` directive (if any was provided).#### `navTooltip`
(boolean) add this attribute or set it's value to true to specify that the tooltip belongs to a nav button. Defaults to `false`.
#### `positionV`
(string) specifies the vertical position of the tooltip. Can be either `'top'` or `'bottom'`.
#### `positionH`
(string) specifies the horizontal position of the tooltip. Can be either `'right'` or `'left'`.
#### `event`
(string) the event to show the tooltip on. Can be either `'hover'`, `'click'` or `'press'`. Defaults to `'hover'` on desktop, `'press'` on mobile.
Note: `'hover'` only works on desktop.#### `desktopEvent`
(string) the event to show the tooltip on when displayed on a desktop . Can be either `'hover'`, `'click'` or `'press'`. Defaults to `'hover'`.
Note: This only works when the `event` attribute is omitted.#### `mobileEvent`
(string) the event to show the tooltip on when displayed on a mobile. Can be either `'click'` or `'press'`. Defaults to `'press'`.
Note: This only works when the `event` attribute is omitted.#### `arrow`
(boolean) add this attribute or set it's value to true to show an arrow attached to the tooltip. Defaults to `false`.
#### `duration`
(number) number of milliseconds to show the tooltip for. Defaults to `3000`.
#### `active`
(boolean) add this attribute or set it's value to true to display the tooltip. Defaults to `false`.
#### `topOffset`
(number) add this attribute to offset the vertical position of the tooltip. Defaults to `0`.
#### `leftOffset`
(number) add this attribute to offset the horizontal position of the tooltip. Defaults to `0`.
#### `hideOthers`
(boolean) add this attribute to set weather to hide other visible tooltips. Defaults to `false`.
## Versioning
We use [SemVer](https://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/zyra/ionic-tooltips/tags).
## Contribution
- **Having an issue**? or looking for support? [Open an issue](https://github.com/zyra/ionic-tooltips/issues/new) and we will get you the help you need.
- Got a **new feature or a bug fix**? Fork the repository, make your changes, and submit a pull request.## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
## Support this project
If you find this project useful, please star the repository to let people know that it's reliable. Also, share it with friends and colleagues that might find this useful as well. Thank you :smile: