-
The Velvet Underground & NicoThe Velvet Underground -
White Light / White HeatThe Velvet Underground -
The Velvet UndergroundThe Velvet Underground -
LoadedThe Velvet Underground
Click a slide control and wait for the callback.
jQuery:
$(function(){
$('#slider1').bxSlider({
pager: true,
onBeforeSlide: function(currentSlide, totalSlides){
$('.field-name-field-custom .field-item').append('<p class="check">Slide index ' + currentSlide + ' of ' + totalSlides + ' total slides has completed.');
}
});
});- Slide indecies are zero based.
- onAfterSlide will fire on page load and the first slide will be the target.
- onBeforeSlide will not fire on page load.
- The third parameter for the callback methods passes in the current slide jQuery object