Swiper.js autoplay

Hi! I am useing swiper.js to create a vertical slider on a webflow landing page. I desperately need to get the slider to pause on hover, and I cannot get it to work. I am a little bit new to javascript, so any tips are helpful. I have looked at the swiper.js documentation and tried to place the “pauseOnMouseEnter: true” in various places in the code, but it is not working.

Here is my read only: Webflow - Behold

@Elise060591 - We can’t effectively debug custom code inside your read-only project so you really should share a published URL where the slider is implemented.

Ah, sorry! Does this work? www.b-hold.no

hi @Elise060591 according to SwiperJS documentation us can use pauseOnMouseEnter that is by default false

const swiper = new Swiper('.swiper', {
  autoplay: {
    delay: 0,
    pauseOnMouseEnter: true,
  },
});