+ 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
6 Respostas
+ 5
In CSS section - line 20.
It should be "1s" not "is", it defined animation duration.
+ 5
In Css, "animate is linear infinite"
^1s
+ 5
Thanks for helping
+ 4
Fix this:
animation: animate is linear infinite;
to:
animation: animate 1s linear infinite;
+ 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.
+ 3
Thanks a lot for helping