Design comparison
SolutionDesign
Solution retrospective
How to get the display behind the winner display?
Community feedback
- @IllusiveCoder1101Posted about 2 years ago
First off congrats on completing the project , to get that effect you need to use keyframes to add animation at different points , For example:-
@keyframes pop{ 0%{ transform: scale(1.1); } 33%{ transform: scale(1.3); } 66%{ transform: scale(1.2); } 100%{ transform: scale(1.1); } } This is a keyframe. you can reference the name of the animation on any element like this.
.winner{ animation: pop; animation-duration: 2s; }
You have to do something like this.
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord