Sunday, 15 July 2012

jquery - Add a pause on hover of slideshow -



jquery - Add a pause on hover of slideshow -

hi i'm trying add together pause slideshow have.

$(document).ready(function() { $('#slides').superslides({ slide_easing: 'easeinoutcubic', slide_speed: 900, pagination: true, hashchange: true, scrollable: true, pagination: false, play:6000 }); });

what add together create slideshow pause on mouseover

i don't know if found reply question. there api phone call in github documentation superslides. implement might like:

$('#slides').on('mouseenter', function() { $(this).superslides('stop'); });

and on leaving hover:

$('#slides').on('mouseleave', function() { $(this).superslides('start'); });

if helps, please allow me know!

jquery slideshow mouseover

No comments:

Post a Comment