Is it possible to add animation like bounce?
See original GitHub issueIs it possible to add animation like bounce? I try to add some code:
& .ReactModal__Content {
&--after-open {
animation-name: bounceIn;
animation-duration: 450ms;
animation-timing-function: linear;
animation-fill-mode: forwards;
opacity: 1;
}
}
@keyframes bounceIn{
0%{
opacity: 0;
transform: scale(0.3) translate3d(0,0,0);
}
50%{
opacity: 0.9;
transform: scale(1.1);
}
80%{
opacity: 1;
transform: scale(0.89);
}
100%{
opacity: 1;
transform: scale(1) translate3d(0,0,0);
}
}
But its doesnt work
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
How to make smooth bounce animation using CSS
The smooth bounce animation can be done with the help of HTML and CSS. It will generate fun and desired outputs. For this...
Read more >Making CSS Animations Feel More Natural
The second bounce is making this feel more alive, but something still seems off. The bounce looks stiff compared to the rest of...
Read more >Create Smooth Overshoot and Bounce Animation in After Effects
In this, After Effects tutorial you will learn how to Create Smooth Overshoot and Bounce Animation in After Effects. We will use keyframe ......
Read more >Bounce Animation - CSS Animations - YouTube
Download Files From Here : https://www.darkcode.info/2020/04/ bounce - animation -css- animations.html◘ Facebook Page: ...
Read more >CSS - Bounce Effect - Tutorialspoint
Bounce Animation effect is used to move the element quick up, back, or away from a surface after hitting it. Syntax. @keyframes bounce...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Still no have time to try. I’ll write when I do this
2017-12-22 15:21 GMT+03:00 Bruno Dias notifications@github.com:
– Frontend|React|UI: victor-js.com SkypeID: victor.developer
@Xurma2 Check out the example css https://github.com/reactjs/react-modal/blob/master/examples/basic/app.css. Maybe you can find something missing.