Has anyone had any experience with FlexSlider or jQuery in general?
I've been using the FlexSlider slideshow script and I've made some customizations to fit my needs. You can check it out here:
My main query is, does anyone know how to make the slideshow fade in while still using the slide animation for the slides? Currently, I have this code:
<script type="text/javascript">
$(window).load(function(){
$('.flexslider').flexslider({
animation: "fade",
start: function(slider){
$('.flexslider').removeClass('loading');
}
});
});
This setup allows the slideshow to fade in, but it also makes the slides fade to the next one. I would prefer a sliding effect.
Here's a link to the Fiddle for reference: http://jsfiddle.net/HGEDz/1/