پیشنمایش زنده
کد HTML
<svg class="container"><rect class="boxes"></rect></svg>
کد CSS
.container {
width: 50px;
height: 50px;
}
.container .boxes {
width: 50px;
height: 50px;
fill: none;
stroke-width: 50px;
stroke: #42a8cc;
stroke-dasharray: 50;
stroke-dashoffset: 50%;
animation: animate 2s linear infinite;
}
@keyframes animate {
to {
stroke-dashoffset: 250%;
}
}