Loading animation with CSS
When to use a loader?
Immediate response time is less than 1 second. If they don't get any visual feedback after a second, they start to worry. If you have a process that takes longer than a second, you should display a spinner. It creates an excellent user experience on your website.
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>CREATION CODE</title>
</head>
<body>
<button class="btn">
<span class="loading">L<span class="loader"></span>ading</span>
<span class="dot dot1">.</span>
<span class="dot dot2">.</span>
<span class="dot dot3">.</span>
</button>
</body>
</html>
CSS:
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #fbf7f4;
}
.btn {
padding:13px 30px;
border: none;
background-color: #00aecc;
color: #e9e9e9;
box-shadow: 20px 20px 40px -6px rgba(0,0,0,0.2);
border-radius:50px;
cursor: pointer;
}
.loading{
color:black;
}
.loader{
display: inline-block;
height: 10px;
width: 10px;
border: 2px solid #e9e9e9;
border-top-color: transparent;
border-radius: 50%;
margin: 0px 1px 0px 1px;
animation: load 0.8s linear infinite ;
}
@keyframes load{
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.dot{
font-weight:900;
animation: animate 1s linear infinite;
}
.dot1{
animation-delay:0.5s;
}
.dot2{
animation-delay: 1s;
}
.dot3{
animation-delay: 1.25s;
}
@keyframes animate {
0%{
opacity:0.5;
}
50%{
opacity:1;
}
100%{
opacity:0.5;
}
}
Comments
Post a Comment