Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Anything slider Re: Anything slider

#132447
Mottie
Member

@tejdeepquest: You can use the `clickControls` option and set it to use both `mouseenter` and `mousemove` because when the slider is animating, it will ignore all requests to change the slider to another panel. Check out [this demo](http://jsfiddle.net/Mottie/ycUB6/5430/).

$(‘#slider’).anythingSlider({

// Events used to activate navigation control functionality
clickControls: “mouseover mousemove focusin”

});

It’s not perfect, because sometimes you have to jiggle the mouse to make the slide change, but it’s about the best you can do and not have the animation get all jumpy.