Need help in Animation | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Need help in Animation

What is wrong in this code why the image of heart ❤️ is not Animate https://code.sololearn.com/WDGAVV6idq7e/?ref=app

3rd Oct 2020, 6:27 AM
Shubham 🖤
Shubham 🖤 - avatar
6 Answers
+ 5
In CSS section - line 20. It should be "1s" not "is", it defined animation duration.
3rd Oct 2020, 6:29 AM
Raj Chhatrala
Raj Chhatrala - avatar
+ 5
In Css, "animate is linear infinite" ^1s
3rd Oct 2020, 6:30 AM
Pranav Kalro
Pranav Kalro - avatar
+ 5
Thanks for helping
3rd Oct 2020, 6:31 AM
Shubham 🖤
Shubham 🖤 - avatar
+ 4
Fix this: animation: animate is linear infinite; to: animation: animate 1s linear infinite;
3rd Oct 2020, 6:33 AM
Josh Greig
Josh Greig - avatar
+ 3
Also in your HTML, <limk rel="stylesheet" href="style.css"> should be: <link rel="stylesheet" href="style.css"> It is a broken link in Sololearn Code Playground either way but you'll need that fixed for your CSS link to work elsewhere.
3rd Oct 2020, 6:35 AM
Josh Greig
Josh Greig - avatar
+ 3
Thanks a lot for helping
3rd Oct 2020, 6:48 AM
Shubham 🖤
Shubham 🖤 - avatar