0
Menucool image slide will auto start if you have set {autoAdvance: true} in the js-image-slider.js.
So we have to set it to { autoAdvance: false, }.
Then this option should be changed once the slider is hovered. To accomplish this, we can add the script below to the page using the slider's built-in functions that are listed in the image slider demo 4:
<script>
var flag = true;
document.getElementById("slider").onmouseover=function() {
if(myFlag) {
imageSlider.changeOptions({autoAdvance: true});
flag = false;
//if you need the scrolling immediately, add: imageSlider.next();
}
}
</script>