Skip to content
Barak Taya
Projects
@size: 10px;
@grid: 100 x 17;
background: var(--Blue-color);
scale: 0;
opacity: 0;
animation: m 4s linear infinite;
transform: rotate(45deg) scale(1.6);
animation-delay: calc(
-1s/@I * @i * @sin(@i)
);
@keyframes m {
0%, 50%, 90% { scale: 1; opacity: 1 }
25%, 75%, 100% { scale: 0; opacity: 0 }
}