CSS Loading Spinner | CSS Spinner Animation Using HTML and CSS | #Shorts

preview_player
Показать описание
👉Please like, share, and subscribe to our channel👈

Make loading spinner using html and css. this video is a short video. you can watch our other video about website designing. css Spinner (preloader)

Video tags:
css spinner animation, css spinner loader animation, css, css3, css animation, css spinner loader, css loaders, css loaders, css loader animation, how to create a preloader, css preloader animation, css preloader tutorial, how to add preloader in html page, preloader css, the best spinner and loader in 2023

#Shorts #cssspinner #preloader
Рекомендации по теме
Комментарии
Автор

sourse code :

<!DOCTYPE html>
<html lang="en">
<head>
<title>LOADER</title>
<!-- STYLE -->
<style>
.loading-fone{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(0, 0, 0, .5);
display: flex;
justify-content: center;
align-items: center;
}
.lds-ring{
position: relative;
width: 80px;
height: 80px;
}
.ring{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 15px solid #fff;
border-radius: 50%;
border-color: #fff transparent transparent transparent;
animation: ring 1.2s cubic-bezier(.5, 0, 0.5, 1) infinite;
}
.ring:nth-child(1){
animation-delay: -.15s;
}
.ring:nth-child(2){
animation-delay: -.45s;
}
.ring:nth-child(3){
animation-delay: -.3s;
}
@keyframes ring{
0%{
transform: rotate(0deg);
}100%{
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<!-- BACKGROUND -->
<div class="loading-fone">
<!-- LOADING -->
<div class="lds-ring">
<!-- RINGS -->
<div class="ring"></div>
<div class="ring"></div>
<div class="ring"></div>
<div class="ring"></div>
<!-- RINGS END -->
</div>
<!-- LOADING END -->
</div>
<!-- BACKGROUND END-->
</body>
</html>

beha-coder
welcome to shbcf.ru