Great things are on the horizon
Something big is brewing! Our store is in the works and will be launching soon!
.pro-scrolling-text {
display: inline-block;
/* 15s ko kam ya zyada karke aap speed control kar sakte hain */
animation: scroll-ltr 15s linear infinite;
}
/* Mouse over karne par animation pause ho jayega */
.pro-banner-container:hover .pro-scrolling-text {
animation-play-state: paused;
cursor: pointer;
}
/* Left se Right scroll karne ka animation */
@keyframes scroll-ltr {
0% {
transform: translateX(-100%); /* Left side ke bahar se shuru hoga */
}
100% {
transform: translateX(100vw); /* Right side se bahar nikal jayega */
}
}
Something big is brewing! Our store is in the works and will be launching soon!