Skip to content

Instantly share code, notes, and snippets.

@jrthib
Created August 5, 2013 19:55
Show Gist options
  • Select an option

  • Save jrthib/6159016 to your computer and use it in GitHub Desktop.

Select an option

Save jrthib/6159016 to your computer and use it in GitHub Desktop.
$('.bxslider').bxSlider({
pagerCustom: '#bx-pager',
mode: 'horizontal',
startSlide: 0,
controls: 'false',
onSlideAfter: function($slideElement, oldIndex, newIndex) {
var newClass = $slideElement.attr('class');
var oldClass = $('.bxslider li')[oldIndex].attr('class');
$('body').removeClass(oldClass);
$('body').addClass(newClass);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment