⨠Explore our latest arrivals and timeless bestsellers. Find the perfect article to define your look. šļø
⨠Explore our latest arrivals and timeless bestsellers. Find the perfect article to define your look. šļø
/* 1. BLINKING EFFECT */
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; } /* A soft blink is less jarring */
}
/* 2. LEFT-TO-RIGHT MOVEMENT (MARQUEE) */
@keyframes moveLeftToRight {
0% { transform: translateX(-50%); } /* Start off-screen to the left (or wherever you prefer the starting point) */
100% { transform: translateX(50%); } /* Move off-screen to the right */
}
/* Style for the text that moves and blinks */
.blinking-text {
/* Apply styles */
color: white;
font-size: 1.2em;
font-weight: bold;
white-space: nowrap; /* Prevents text from wrapping to the next line */
display: inline-block;
/* Apply animations */
animation:
blink 2s infinite,
moveLeftToRight 15s linear infinite alternate; /* 15s is the duration, 'alternate' makes it go back and forth */
}
/* Style for the container to hide overflow and ensure the movement works */
.moving-text-container {
width: 100%;
overflow: hidden;
text-align: center; /* Center the element before movement starts */
}
HEY YOU, SIGN UP AND CONNECT TO US!
Be the first to learn about our latest trends and get exclusive offers