I created a function to play the slideshow when its in view, feel free to use and modify it.
$('.flexslider').each(function() {
var galleryData = $(this).data('flexslider');
galleryData.flexslider('pause');
galleryData.flexslider(0);
$(this).appear(function() {
galleryData.flexslider('play');
});
});
You can see it’s effect here: http://staging.bpg.tv/case-study/history-channel/
Please incorporate some function to play the slider when its in view, use mine and add a conditional check for if the slider is set to autoplay.
And please add an option for infinite looping: “animationLoop”
You guys have this set to “false” in the js/functions.js file (line 2970). Can you please make it an option.