Skip to content

Instantly share code, notes, and snippets.

@richlloydmiles
Last active August 29, 2015 14:06
Show Gist options
  • Save richlloydmiles/a9f7600a63752b8ff7e7 to your computer and use it in GitHub Desktop.
Save richlloydmiles/a9f7600a63752b8ff7e7 to your computer and use it in GitHub Desktop.
owl slider implementation
<script>
jQuery(document).ready(function() {
jQuery('#featured-slider-<?php echo $carousel_id;?>').owlCarousel({
navSpeed: 400,
items: 1 ,
autoplay:false ,
autoplayTimeout:10000 ,
nav : true,
navText: [ '<i class="fa-chevron-left fa slider-chev featured-left-chev" ></i>' ,
'<i class="fa-chevron-right fa slider-chev featured-right-chev"></i>'] ,
dots : true,
loop : true,
mouseDrag : false,
animateOut: 'fadeOut',
animateIn: 'fadeIn',
responsive : {
0 : {
items: 1 ,
},
768 : {
items: 1 ,
},
992 : {
items: 3 ,
}
}
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment