Published
December 19, 2023
Updated
December 19, 2023
Webflow's Slider offers a fairly basic slider implementation. Often users want it to behave differently.
Auto-Advance
Webflow's slider has an auto-advance feature, which supports;
- Configurable delay for the auto-advance
- Pause-on-hover, so users can read a slide that interests them ( desktop only ).
Prevent Pause on Hover
In some cases, the pause-on-hover feature isn't useful, and there is no option to disable it. Before you disable that feature, consider it’s there for usability and accessibility reasons.
Fore purely decorative content, disabling it is fine.
You can do this with custom CSS, e.g.;
<style>
#slider1 {
pointer-events: none;
}
</style>
JS API
SA5 has a basic Webflow Slider API for slider manipulation and event handling. If you need more advanced slider control, look here.
Resume after click
https://discourse.webflow.com/t/resume-slider-autoplay-after-user-click-tap/59007/9?u=memetican