2 Easy Loading Animations For Beginners | CSS Tutorial

preview_player
Показать описание
Create two super easy to create loaders with HTML and CSS.

📁 Download Source Code :

💻 About My Code Editor:

----------

⭐ Exciting coding quizzes on my website:

----------
Email:

Instagram:

----------

🎵Music:
Track: Hope — BeatByRhythm [Audio Library Release]
Music provided by Audio Library Plus
Рекомендации по теме
Комментарии
Автор

Thanks, the last spiner is beautiful.
Tips: you can declare an angle property
&::after {
--angle : 30deg;
animation: spin var(--time) infinite ease-in-out;
}
To center before and after psudo classes:
&::after, &::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
translate: -50% -50%;

}

thaidoan