Custom shape dividers built using customized .SVG files in three separate container levels and opacities
Rate this tutorial
Custom shape dividers built using customized .SVG files in three separate container levels and opacities
Container css
selector {
height: 100px;
object-fit: fill;
}
__________________________________________
Image css
selector {
--speed: 10s;
}
selector .elementor-widget-container {
animation: moving var(--speed) ease-in-out infinite alternate;
}
@keyframes moving {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}
No Additional HTML Required