$ jQuery Easy Slider Numeric

0

I'm using Jquery easySlider1.7.js, and I have a doubt about the 'numeric' property.

When using this property, the plugin add to the bottom of the images a link for each slide, only when selecting one of them, automatic scrolling is disabled.

Is it possible to keep scrolling even by clicking one of the links?

Link: link

Note: When selecting any slide, automatic scrolling is disabled.

    
asked by anonymous 15.05.2015 / 20:17

1 answer

1

Make the following changes to the file easySlider1.7.js:

  • Line 158 replace "t = dir" with " t = parseInt (dir) "
  • Line 195 replace "if (options.auto & & dir ==" next "& & click!)" with " if (options.numeric) "
  • I ran the test and it worked.

    References:

    • Stackoverflow -animation

    15.05.2015 / 23:30