Mon Aug 15 2022
Merging Color Drop Preloader
CSS3833 views
File Name: mergin-color-drop.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">
<title>Merging Color Drop Preloader</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #000;
}
section {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 300px;
height: 100px;
background-color: #000;
position: relative;
filter: blur(10px) contrast(20);
}
.drop1, .drop2 {
width: 70px;
height: 70px;
border-radius: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.drop1 {
background-color: #f9fd00;
left: 10%;
animation: ani1 ease-in-out infinite 2.5s;
}
.drop2 {
background-color: #f00;
right: 10%;
animation: ani2 ease-in-out infinite 2.5s;
}
@keyframes ani1 {
0% {
left: 10%;
}
50% {
left: 45%;
}
100% {
left: 10%;
}
}
@keyframes ani2 {
0% {
right: 10%;
}
50% {
right: 45%;
}
100% {
right: 10%;
}
}
</style>
</head>
<body>
<section>
<div class="loader">
<div class="drop1"></div>
<div class="drop2"></div>
</div>
</section>
</body>
</html>
Result Screenshot(s)
Author:Geekboots