?
?
⭐
?
FEELING LUCKY?
DRAW YOUR LUCKY BRAND
CLICK HERE
const track = document.getElementById("sliderTrack");
const next = document.getElementById("nextBtn");
const prev = document.getElementById("prevBtn");
let position = 0;
const move = 240; // card width + gap
next.onclick = () => {
position += move;
track.style.transform = `translateX(-${position}px)`;
};
prev.onclick = () => {
position = Math.max(0, position - move);
track.style.transform = `translateX(-${position}px)`;
};