JavaScript Animations | How to make an animated Preloader

preview_player
Показать описание
Today we follow on from our last video and create JavaScript animations. We create a preloader that uses keyframes, JavaScript positioning and we animate some text.

Day 60 #100DaysOfCode

Do you want some extra benefits? Then support me on Patreon and get access to patron special benefits

Important Links

If you read down here then HELLO! :)

JavaScript is cool.

#webdevelopment #animations #javascript
Рекомендации по теме
Комментарии
Автор

this is what I am looking for! Clean preloader with vanilla js. Good job!

GaryGnahz
Автор

how to deal with scrollbar? is there any way to hide it other than set overflow hidden on body in html?

guru-xnyp
Автор

what did you instal to see that line from start { all the way to the end on } ?

bogdanhener
Автор

Is there a link to this code? Did I miss it in the video?

JawsoneJason
Автор

The animations should not be done with JavaScript. Every bit of that is doable with native CSS Animations. Furthermore, positioning properties do not use hardware rendering, so they can be choppy. Use translations instead.

JawsoneJason