Remove @webkit-keyframe Full Class From Animation. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Remove @webkit-keyframe Full Class From Animation.

If I add the `@-webkit-keyframes bounceInLeft { 0% { opacity: 0; -webkit-transform: translateX(-2000px); transform: translateX(-2000px); } 100% { opacity: 1; -webkit-transform: translateX(30px); transform: translateX(30px); } } @keyframes bounceInLeft { 0% { opacity: 0; -webkit-transform: translateX(-2000px); -ms-transform: translateX(-2000px); transform: translateX(-2000px); } 100% { opacity: 1; -webkit-transform: translateX(30px); -ms-transform: translateX(30px); transform: translateX(30px); } }` code to the input textarea and then click the button, only the `@keyframes bounceInLeft { 0% { opacity: 0; transform: translateX(-2000px); } 60% { opacity: 1; transform: translateX(30px); } } ` code should remain in the output textarea, and all other code within that class should be removed. https://code.sololearn.com/WJQhJT5UyShy/?ref=app

15th Aug 2023, 3:35 PM
𝐀𝐲𝐞𝐬𝐡𝐚 𝐍𝐨𝐨𝐫
𝐀𝐲𝐞𝐬𝐡𝐚 𝐍𝐨𝐨𝐫 - avatar
1 Answer
+ 6
https://code.sololearn.com/WRXAWCXxL1ww/?ref=app
15th Aug 2023, 4:31 PM
furqan elahie
furqan elahie - avatar