Elevate your website's visual appeal with our stunning CSS3 animated circles backgrounds. Browse through our selection to find the perfect fit for your project.


HTML Code
<div class="wrapper">
<div class="item">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
CSS Code
body{
margin: 0;
padding: 0;
}
.wrapper{
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
background: linear-gradient(90deg, rgba(2,0,0.6,1) 0% , rgb(130, 54, 3) 35% , rgb(247, 109, 4) 100%);
}
.item div{
position: absolute;
width: 60px;
height: 60px;
background-color: transparent;
border: 1px solid white;
border-radius: 50%;
}
.item div:nth-child(1){
top: 12%;
left: 42%;
animation: ms 10s linear infinite;
}
.item div:nth-child(2){
top: 70%;
left: 50%;
animation: ms 7s linear infinite;
}
.item div:nth-child(3){
top: 17%;
left: 6%;
animation: ms 9s linear infinite;
}
.item div:nth-child(4){
top: 18%;
left: 70%;
animation: ms 10s linear infinite;
}
.item div:nth-child(5){
top: 90%;
left: 80%;
animation: ms 5s linear infinite;
}
.item div:nth-child(6){
top: 25%;
left: 20%;
animation: ms 5s linear infinite;
}
.item div:nth-child(7){
top: 40%;
left: 40%;
animation: ms 20s linear infinite;
}
.item div:nth-child(8){
top: 70%;
left: 15%;
animation: ms 15s linear infinite;
}
.item div:nth-child(9){
top: 56%;
left: 65%;
animation: ms 20s linear infinite;
}
.item div:nth-child(10){
top: 45%;
left: 90%;
animation: ms 15s linear infinite;
}
@keyframes ms {
0%{
transform: scale(0) translateY(0) translateX(0) rotate(0);
opacity: 1;
}
100%{
transform: scale(1.1) translateY(-90px) translateX(200px) rotate(360deg);
opacity: 0;
}
}