Jake Rocheleau designed a very nice jQuery image rotators with description plug-in.
He missed to instruct how to stop this animation. Here I got the STACKOVERFLOW post. And answered to that question.
Question: How to stop jquery imageslider on mouse hover.
Simply we need to find the correct selector. And
like this below code,
Here is my STACKOVERFLOW answer post.
He missed to instruct how to stop this animation. Here I got the STACKOVERFLOW post. And answered to that question.
Question: How to stop jquery imageslider on mouse hover.
Simply we need to find the correct selector. And
.clearInterval()
on .mouseover()
event listener. Then reset the slide time in setInterval()
in .mouseout()
event listener.like this below code,
$('.image_thumb ul li').on("mouseover",function(){
clearInterval(intervalID);
});
$('.image_thumb ul li').on("mouseout",function(){
intervalID = setInterval(cycleImage, slidetime);
});
Here is my STACKOVERFLOW answer post.
Jake Rocheleau designed a very nice jQuery image rotators with description plug-in.
He missed to instruct how to stop this animation. Here I got the STACKOVERFLOW post. And answered to that question.
Question: How to stop jquery imageslider on mouse hover.
Simply we need to find the correct selector. And
like this below code,
Here is my STACKOVERFLOW answer post.
He missed to instruct how to stop this animation. Here I got the STACKOVERFLOW post. And answered to that question.
Question: How to stop jquery imageslider on mouse hover.
Simply we need to find the correct selector. And
.clearInterval()
on .mouseover()
event listener. Then reset the slide time in setInterval()
in .mouseout()
event listener.like this below code,
$('.image_thumb ul li').on("mouseover",function(){
clearInterval(intervalID);
});
$('.image_thumb ul li').on("mouseout",function(){
intervalID = setInterval(cycleImage, slidetime);
});
Here is my STACKOVERFLOW answer post.
No Comment