Need help to make my jquery slider module to scroll smoothly instead of every second
Hi all, I am really new to jquery, I have recently purchased a slider module for Prestashop, however I want to change the scroll sequence to make the items scroll smoothly without pausing, I have looked into the controls of the slider but cant figure out whether it has options to do this or I will have to configure it to to this.
Here is the controls in the .js file
- // Default configuration properties.
- var defaults = {
- vertical: false,
- start: 1,
- offset: 1,
- size: null,
- scroll: 3,
- visible: null,
- animation: 'normal',
- easing: 'swing',
- auto: 0,
- wrap: null,
- initCallback: null,
- reloadCallback: null,
- itemLoadCallback: null,
- itemFirstInCallback: null,
- itemFirstOutCallback: null,
- itemLastInCallback: null,
- itemLastOutCallback: null,
- itemVisibleInCallback: null,
- itemVisibleOutCallback: null,
- buttonNextHTML: '<div></div>',
- buttonPrevHTML: '<div></div>',
- buttonNextEvent: 'click',
- buttonPrevEvent: 'click',
- buttonNextCallback: null,
- buttonPrevCallback: null
- };
I maybe wrong but I think it is here that I can change the slider to scroll smoothly
any help would be greatly appreciated
thanks
Steve