$('.w-slider').off('mouseenter mouseleave');
in the Before section to disable pause on hover.
If your full-screen slider in Webflow pauses on hover, it's likely due to Webflow's native slider autoplay behavior. Here's how to make sure it does not pause when hovered.
To override the default pause-on-hover behavior, you can disable it with a small script.
Go to Page Settings and scroll to the Before tag section.
Insert the following inline script:
$('.w-slider').off('mouseenter mouseleave');
This removes the mouseenter/mouseleave events that trigger pause on hover.
Make sure jQuery is active (Webflow includes it by default).
To prevent a Webflow full-screen slider from pausing on hover, you need to disable the built-in mouseenter event using jQuery ($('.w-slider').off('mouseenter mouseleave');
) in the Before section. This ensures smooth, continuous autoplay regardless of cursor activity.