Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some changes in the docs for advanced transitions #1023

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
12 changes: 7 additions & 5 deletions docs/guide/css.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,17 +210,19 @@ Showing:
| ----- | ------- | ------- |
| `v-popper__popper--show-from` | **true** | false |
| `v-popper__popper--show-to` | false | **true** |
| `v-popper__popper--hidden-from` | false | false |
| `v-popper__popper--hidden-to` | false | false |
| `v-popper__popper--hide-from` | false | false |
| `v-popper__popper--hide-to` | false | false |

Hidding:
Hiding:

| Class | Frame 1 | Frame 2 |
| ----- | ------- | ------- |
| `v-popper__popper--show-from` | false | false |
| `v-popper__popper--show-to` | false | false |
| `v-popper__popper--hidden-from` | **true** | false |
| `v-popper__popper--hidden-to` | false | **true** |
| `v-popper__popper--hide-from` | **true** | false |
| `v-popper__popper--hide-to` | false | **true** |

Please note that the default styles for the parent of `.v-popper__wrapper` (i.e. `.v-popper__popper.v-popper__popper--shown` and `.v-popper__popper.v-popper__popper--hidden`) have a transition-duration of .15 seconds. So if your transition of `.v-popper__wrapper` takes longer, you might want to change this transition as well.

#### Zoom show only example

Expand Down