forked from fdnd-task/pleasurable-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
Week 2
Lisa van Mansom edited this page May 23, 2024
·
6 revisions
// Carousel own playlist
// Buttons click scrollevent in carousel
prevBTN.addEventListener('click', function () {
carousel.scrollBy({
left: -carousel.offsetWidth,
behavior: 'smooth'
})
});
nextBTN.addEventListener('click', function () {
carousel.scrollBy({
left: carousel.offsetWidth,
behavior: 'smooth'
})
});