.w-slider to block the mouseenter event, ensuring autoplay continues on hover.If your Webflow full-screen slider pauses on hover, it's likely due to built-in behavior of the native Slider component, which auto-pauses autoplay when the user hovers over it. You can disable this using a bit of custom configuration in Webflow.
Webflow.require('slider').plugins.forEach(s => s.destroy()); Webflow.require('slider').init({ disableSwipe: false, infinite: true, autoplay: true, delay: 5000 });
```javascript
document.querySelectorAll('.w-slider').forEach(slider => {
slider.addEventListener('mouseenter', e => {
e.stopImmediatePropagation();
}, true);
});
```
Note: This code assumes your slider uses the default .w-slider class. If yours has a custom class or ID, replace .w-slider with the appropriate selector.
To prevent your Webflow full-screen slider from pausing on hover, you need to override its default pause-on-hover behavior using custom JavaScript. Webflow does not provide a built-in toggle, so manually intercepting mouse events is the most reliable solution.