I don't know what's wrong with the animation. Please help!!! | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

I don't know what's wrong with the animation. Please help!!!

https://code.sololearn.com/cbrV6Opbyq3a/?ref=app

2nd Nov 2023, 4:42 PM
Tanisha Parmar
Tanisha Parmar - avatar
10 Antworten
+ 4
/* Have a look at the example and my comments: */ .active-day{ color:#00cc00; animation-name:pulse; animation-duration:2s; animation-iteration-count:infinite; /* typo */ } @keyframes pulse { 0% {font-size: 100%;} 100% {font-size:120%;} /* change font-size */ } /* How is the color to change to #00cc00 when it already has that color? Are you referring to the opacity? */
2nd Nov 2023, 5:43 PM
Lisa
Lisa - avatar
+ 3
/*animate .active-day name it pulse, duration 2s , repeat infinte times and make the color change to #00cc00 at 50% and make test size oscillate between 100% to 120% what's wrong with this code? */ .active-day {color:#00cc00; animation-name:pulse; animation-duration:2s; animation-iteration-count:infinte; } @keyframes pulse { 50%{color:#00cc00;} 100%{roate(45deg);} 120%{rotate(-45deg);} }
2nd Nov 2023, 4:45 PM
Tanisha Parmar
Tanisha Parmar - avatar
+ 2
I'm sorry for any confusion, but I'm unable to view or interact with visual elements like animations. If you're experiencing an issue with an animation on your webpage, I recommend checking the following:Check Your CSS and JavaScript: Make sure that any CSS or JavaScript code related to the animation is written correctly and that there are no syntax errors.Ensure Necessary Libraries: If you're using any external libraries for animations, ensure they are properly linked in your HTML file and are compatible with the elements you're trying to animate.Browser Compatibility: Different browsers may interpret animations slightly differently. Make sure your animation is compatible with the browsers you're targeting.Inspect Element: Use your browser's developer tools to inspect the element that's supposed to be animated. Look for any error messages or warnings related to the animation.Check for Conflicts: Make sure there are no conflicting styles or scripts that might interfere with the animation.File Paths: Double-ch
4th Nov 2023, 12:09 PM
রহস্যময়— পৃথিবী
রহস্যময়— পৃথিবী - avatar
+ 1
Lisa 😄✌️, well done . very good truth
4th Nov 2023, 12:06 PM
DONFY
DONFY - avatar
+ 1
Tanisha Parmar We all make mistakes, don't worry..😁
4th Nov 2023, 12:10 PM
DONFY
DONFY - avatar
+ 1
DONFY 😊😊
4th Nov 2023, 12:14 PM
Tanisha Parmar
Tanisha Parmar - avatar
0
Lisa It's the initial color and #00cc00 is the final color
3rd Nov 2023, 4:52 AM
Tanisha Parmar
Tanisha Parmar - avatar
0
Lisa it's working now thank you so much for the help😊🙏
3rd Nov 2023, 4:56 AM
Tanisha Parmar
Tanisha Parmar - avatar
0
Lisa I think I now know where I was wrong 🤦🏻‍♀️
3rd Nov 2023, 4:57 AM
Tanisha Parmar
Tanisha Parmar - avatar
0
রহস্যময়— পৃথিবী Thank you so much for the help 🙏I'll keep the instructions you stated in mind when using animation in the future 😊
4th Nov 2023, 12:14 PM
Tanisha Parmar
Tanisha Parmar - avatar