-
Notifications
You must be signed in to change notification settings - Fork 0
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
[Mantine UI Series] Transition #3
Comments
The rationales: CSS3 transition and JavaScript Transition EventsHow CSS3 transition works
For example .notification {
background: red;
height: 24px;
width: 100px;
transition: background-color ease .2s;
}
.notification.warning {
background-color: yellow;
} Corresponding JavaScript events
|
Mantine UI
|
Overview
This React daily article discusses the design of the Transition component in Mantine UI, and its rationales - CSS3 transitions and corresponding JavaScript events.
The text was updated successfully, but these errors were encountered: