Pure css loader

Developer
Size
2,407 Kb
Views
4,048

How do I make an pure css loader?

Forked from maharajan's Pen Pure css loader.. What is a pure css loader? How do you make a pure css loader? This script and codes were developed by Maharajan on 26 January 2023, Thursday.

Pure css loader Previews

Pure css loader - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Pure css loader</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="dot_loader"> <span class="dot"></span> <span class="dot1"></span> <span class="dot2"></span> <span class="dot3"></span>
</div>
<div class="bar_loader"> <span></span> <span></span> <span></span> <span></span> <span></span>
</div>
<div class="lodercircule"></div>
<div class="doubleloader"> <span class="loaderbig"> </span> <span class="loadersmall"></span>
</div>
<div class="box_loader"></div>
</body>
</html>

Pure css loader - Script Codes CSS Codes

body { background: #0B847E;
}
.dot_loader { position: absolute; left: 10%;
}
.dot_loader > span { width: 20px; height: 20px; border-radius: 50px; background: rgba(0, 0, 0, .5); display: inline-block; position: absolute; top: 50px; -webkit-transition: all 2s ease; -webkit-animation: jump 1s infinite; transition: all 2s ease; animation: jump 1s infinite;
}
span.dot1 { left: 50px; -webkit-animation-delay: 200ms; animation-delay: 200ms;
}
span.dot2 { left: 100px; -webkit-animation-delay: 400ms; -animation-delay: 400ms;
}
span.dot3 { left: 150px; -webkit-animation-delay: 600ms; -animation-delay: 600ms;
}
@-webkit-keyframes jump { 0% { top: 50px; background: #fff; } 20% { top: 0px; } 40% { top: 50px; }
}
@keyframes jump { 0% { top: 50px; background: #fff; } 20% { top: 0px; } 40% { top: 50px; }
}
/*bar loader*/
.bar_loader { position: absolute; left: 25%; top: 50px;
}
.bar_loader > span { width: 30px; height: 30px; background: #fff; display: inline-block; border-radius: 50%; margin-left: 50px; top: 0px; position: absolute;
}
.bar_loader > span:nth-of-type(2) { left: 50px;
}
.bar_loader > span:nth-of-type(3) { left: 100px;
}
.bar_loader > span:nth-of-type(4) { left: 150px;
}
.bar_loader > span:nth-of-type(5) { left: 200px;
}
.bar_loader > span:nth-of-type(odd) { -webkit-trasnform: scale(1); -webkit-transition: all 1s ease; -webkit-animation: backshow 1s linear 1s infinite; -trasnform: scale(1); -transition: all 1s ease; -animation: backshow 1s linear 1s infinite; top: 50px;
}
.bar_loader > span:nth-of-type(even) { -webkit-transform: scale(.2); -webkit-transition: all 1s ease; -webkit-animation: frontshow 1s linear 1s infinite; -transform: scale(.2); -transition: all 1s ease; -animation: frontshow 1s linear 1s infinite;
}
@-webkit-keyframes frontshow { 0% { -webkit-transform: scale(.2); top: 0px; } 25% { -webkit-transform: scale(1.5); top: 0px; } 50% { -webkit-transform: scale(.8); top: 50px; } 100% { -webkit-transform: scale(.2); }
}
@keyframes frontshow { 0% { transform: scale(.2); top: 0px; } 25% { transform: scale(1.5); top: 0px; } 50% { transform: scale(.8); top: 50px; } 100% { transform: scale(.2); }
}
@-webkit-keyframes backshow { 0% { top: 50px; -webkit-transform: scale(1.5); } 25% { top: 0px; -webkit-transform: scale(1.5); } 50% { -webkit-transform: scale(.2); top: 50px; } 100% { -webkit-transform: scale(1); }
}
@keyframes backshow { 0% { top: 50px; transform: scale(1.5); } 25% { top: 0px; transform: scale(1.5); } 50% { transform: scale(.2); top: 50px; } 100% { transform: scale(1); }
}
/*lodercircule*/
.lodercircule { width: 100px; height: 100px; border-radius: 50%; position: absolute; left: 45%; border: 10px solid #fff; top: 50px; border-top-color: transparent; -webkit-transition: all 1s ease; -webkit-animation: rotatecircule 1s linear 1s infinite; transition: all 1s ease; animation: rotatecircule 1s linear 1s infinite;
}
@-webkit-keyframes rotatecircule { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); }
}
@keyframes rotatecircule { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
}
/* dobule loader */
.doubleloader
{ position:absolute; left:55%;
width:100px; height:100px; top:50px;
}
.doubleloader .loaderbig { width: 100px; height: 100px; border-radius: 50%; position: absolute; border: 10px solid #fff; top: 0px; border-top-color: transparent; -webkit-transition: all 1s ease; -webkit-animation: rotatecircule 1s linear 1s infinite; transition: all 1s ease; animation: rotatecircule 1s linear 1s infinite;
}
.doubleloader > .loadersmall
{ width: 70px; height: 70px; border: 10px solid #fff; display:inline-block; position: absolute; border-radius: 50%; left: 50%; top: 15px; margin-lefT: -35px; -webkit-transition:all 1s ease; -webkit-animation:insiderotate 1s linear 1s infinite; border-bottom-color:transparent;
}
@-webkit-keyframes insiderotate
{ 0%{-webkit-transform:rotate(0deg)} 100%{-webkit-transform:rotate(-360deg)}
}
.box_loader
{ position:absolute; left:80%; top:50px; width:100px; height:100px; background:#fff; -webkit-transition:all 1s ease; -webkit-transform:rotate(0deg); -webkit-animation:rotatebox 1s linear 1s infinite;
}
@-webkit-keyframes rotatebox
{ 25% { transform: translateY(69px) rotate(22.5deg); } 50% { transform: translateY(18px) scale(1, 0.9) rotate(45deg); border-bottom-right-radius: 40px; } 75% { transform: translateY(9px) rotate(67.5deg); } 100% { transform: translateY(0) rotate(90deg); }
}
Pure css loader - Script Codes
Pure css loader - Script Codes
Home Page Home
Developer Maharajan
Username mhrjnsa1
Uploaded January 26, 2023
Rating 3
Size 2,407 Kb
Views 4,048
Do you need developer help for Pure css loader?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Maharajan (mhrjnsa1) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!