I am trying to make flexslider for a continuous loop in one direction in one direction. it reaches the last image in the loop, then it should start from the first image again.
I have two problems with an example that I installed on jsfiddle
One: I can't get it to work on jsFiddle
Two: the animation is turned on at the end, and then starts in the other direction, while I want to move in one direction only from left to right.
$(window).load(function(){ $('.flexslider').flexslider({ animation: "slide", animationLoop: false, easing: "linear", useCSS: false, randomize: false, pauseOnHover: true, slideshowSpeed: 12, animationSpeed: 8000, controlNav: false, directionNav: false, itemWidth: 210, itemMargin: 5, start: function(slider){ $('body').removeClass('loading'); } });
source share