davidtheclark / davidtheclark/react-aria-menubutton

Show the menu with a fade transition ?

Open
#115 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
452
Forks
76
PR merge metrics
No merged PRs in 30d

Description

I tried using `CSSTransitionGroup` like so:

```


    {musicMenuItems}

```

`test` class definitions:

```
.test-enter {
opacity: 0.01;
}

.test-enter.test-enter-active {
opacity: 1;
transition: opacity 500ms ease-in;
}

.test-leave {
opacity: 1;
}

.test-leave.test-leave-active {
opacity: 0.01;
transition: opacity 300ms ease-in;
}
```

This doesn't work. Any idea how to show the menu with a fade animation?

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.