Spacer line animation left to right scroll like mmcgbl footer
Thu Jan 16 2025 07:32:10 GMT+0000 (Coordinated Universal Time)
Saved by
@Huzaifa
.footer-spacer {
overflow: hidden;
}
.footer-spacer .elementor-widget-container {
background-color: transparent !important;
}
.footer-spacer .elementor-spacer-inner {
height: 8px !important;
border-bottom: 1px solid #d9d9d961 !important;
}
.footer-spacer .elementor-widget-container:after {
content: "";
content: "";
position: absolute;
bottom: -1px;
left: -20%;
height: 3px;
width: 17%;
opacity: 2;
animation: left-to-right 2.5s ease-in-out infinite alternate;
background: linear-gradient(90deg, rgba(51, 177, 173, 0.1) 0%, #89D501 48%, rgba(51, 177, 173, 0.5) 86%);
}
@keyframes left-to-right {
0% {
left: 0%;
}
100% {
left: 83%;
}
}
.main-tabs-wrapper ul::-webkit-scrollbar {
display: none;
}
content_copyCOPY
Comments