<div class="box">
<div class="container">
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
</div>
</div>
*, *::before, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
background: #c5cae9;
}
.box{
width: 300px;
height: 300px;
background: #1a237e;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 4px 4px 20px rgba(0,0,0,0.3);
}
.container{
height: 15px;
width: 105px;
display: flex;
position: relative;
.circle{
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #fff;
animation: move 500ms linear 0ms infinite;
margin-right: 30px;
&:first-child{
position: absolute;
top:0;
left:0;
animation: grow 500ms linear 0ms infinite;
}
&:last-child{
position: absolute;
top: 0;
right: 0;
margin-right: 0;
animation: grow 500ms linear 0s infinite reverse;
}
}
}
@keyframes grow {
from {transform: scale(0,0); opacity: 0;}
to {transform: scale(1,1); opacity: 1;}
}
@keyframes move {
from {transform: translateX(0px)}
to {transform: translateX(45px)}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.