38cd Scrolling of the thumbnails in jquery for slideshow
  • Visual SlideShow

  • FAQ

How to slow down the scrolling of the thumbnails in jquery for slideshow?

Q: I use your VisualSlideShow. Only one thing confuses me: thumbnails are scrolled too fast.
Is there a way to slow down the scrolling of the thumbnails when you are trying to find a specific image?

A: Open "slideshow.js" file in any text editor and find the following code:

velocity = - (this.retrieve("delay") * 0.01);


change it to:

velocity = - (this.retrieve("delay") * 0.001);

Related

0