I have an image slideshow that works, but I need to make it so that when you slide over with your mouse, the slideshow stops at the particular image and then when you release, starts the slideshow again.. Here is my function:
$(function(){
$(this).mouseover(function(){
$(this).toggle();
});
$('.fadein img:gt(0)').hide();
setInterval(function(){
$('.fadein1 :first-child').fadeOut()
.next('img').fadeIn()
.end().appendTo('.fadein1');},
3000);
});
Could someone please help? It’s really annoying me now.
You need to change your slideshow function to keep better track of the images, something like this should work :
FIDDLE