Animation not working? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Animation not working?

The animation in the code below works in the webversion of SL, but not on the mobile one. I already tried using different vendor prefixes, but that didn't help. Can anyone help me out please? https://code.sololearn.com/Wqg11K5Op4tL/?ref=app

20th Jul 2018, 10:05 AM
Shadow
Shadow - avatar
4 Answers
+ 3
Hi Naitomea , The problem is the height in loader id, the value is 100% but.. 100% of what?? height:100% is used when the parent element have a fixed height declared or have any value that applies some height, if you want to set the entire screen as height, you should change 100% to 100vh, this value uses the 100% of height of the viewport. Your css edited: #loader { background-color: #ffffff; width: 100%; height: 100vh; animation: colorChange 5.5s linear 0 normal; } Hope it helps you!
20th Jul 2018, 11:48 AM
Guillem Padilla
Guillem Padilla - avatar
+ 1
I see, I thought 100% of the screen would do the job... Well, me and web 😒 Thanks for your help!
20th Jul 2018, 11:53 AM
Shadow
Shadow - avatar
+ 1
You're welcome!! Still learning, I also had problems with this kind of things!! :)
20th Jul 2018, 11:56 AM
Guillem Padilla
Guillem Padilla - avatar
+ 1
Oh, so am I, especially when it comes down to web programming, usually I am all over C++.
20th Jul 2018, 6:50 PM
Shadow
Shadow - avatar