简体   繁体   中英

Slideshow - Pause show when hovering over thumbnail

The client has requested that when the viewer hovers over the thumbnails the slideshow automatically pauses. Is this possible? If so how do you do it as I'm a javascript newbie. The slideshow currently pauses when hovering over the main image.

It's the Nivo slider plugin for Wordpress which I purchased.

Thanks

Paul Day Sculpture

$('.nivo-control').hover(function(){
vars.paused = true;
clearInterval(timer);
timer = '';
}, function(){
vars.paused = false;
// Restart the timer
if(timer === '' && !settings.manualAdvance){
timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
}
});

Add this code in jquery.nivo.slider.pack.js. it will work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM