Dean
Dean

Reputation: 1

Woothemes Flexslider Problems changing slider speed

I have been using woothemes flex slider and I need the automated scroll of the slides to be faster. In the jquery.flexslider.js file at the very bottom is the default settings, the only place in the file that I can find that appears to control the speed. However when I change the speed from 7000ms to a higher or lower number i get no change in speed at all, It seems like I am missing something really simple but i cannot work out which.

The flexslider is placed on a simple html page, the speed will not change on local version or online.

Ps im a new member and not allowed to post images yet and the code I pasted in this message displays in line and hard to read so I have left it out.

Has anyone come across this problem before and know how to rectify it? I appreciate any advice :)

Upvotes: 0

Views: 8847

Answers (3)

Alexander K
Alexander K

Reputation: 11

Just use in code:

$('.flexslider').flexslider({ animationDuration: 6000 });

animationSpeed doesn't work.

Upvotes: 1

Samsull
Samsull

Reputation: 419

I'm working with Flexslider, here's code to adjust speed between slides:

$(function(){
  SyntaxHighlighter.all();
});
$(window).load(function(){
  $('.flexslider').flexslider({
    animation: "slide",slideshowSpeed: 3000,
    start: function(slider){
      $('body').removeClass('loading');
    }
  });
});

Here a list of other options.

Upvotes: 4

DavidVII
DavidVII

Reputation: 2283

Not your fault. Their documentation is wrong. Looking at the source code of the plugin on line 796 you see that they use "animationSpeed."

Example:

$('.flexslider').flexslider({
    animationSpeed: 10000
});

Hope that helps.

Upvotes: 0

Related Questions