I want to slow down and eventually stop my slide-show when the mouse pointer hovers over it.
Here is the script I have so far:
$(document).ready(function(){
$('#slideshow').cycle({
fx: 'fade',
speed: 'fast',
timeout: 1000,
pager: '#slider_nav',
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '#slider_nav li:eq(' + (idx) + ') a';
}
});
});
This is the website I am working on: http://www.getushopping.com/. If you visit the site, I am talking about the slide-show playing closest to the top of the page.