Skip to content
Lisa van Mansom edited this page May 23, 2024 · 6 revisions

Dinsdag

Bouwen

Responsive design liked + sug playlist section

Scherm­afbeelding 2024-05-23 om 16 43 32 Scherm­afbeelding 2024-05-23 om 16 46 29

Woensdag

Analyseren

Inspiratie

Scherm­afbeelding 2024-05-23 om 16 52 53

Ontwerpen

Pleasurable UI

Scherm­afbeelding 2024-05-23 om 16 48 00

Donderdag

Bouwen

Pleasurable UI carousel

Scherm­afbeelding 2024-05-23 om 16 38 09 Scherm­afbeelding 2024-05-23 om 16 44 01

Javascript

// 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'
  })
});

Clone this wiki locally