Skip to content
This repository was archived by the owner on Nov 9, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions website/src/pages/v6/animations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ tippy('button', {
});
```

### Disable animations

If you don't want any animations, you can just pass `false` to the `animation` prop:

```js
tippy('button', {
animation: false,
});
```

### Inertia

There's a prop named `inertia` that adds an elastic inertial effect to the
Expand Down