Skip to content

Instantly share code, notes, and snippets.

@hitsujixgit
Created August 21, 2014 04:06
Show Gist options
  • Save hitsujixgit/f2da2d9488ac60f462c1 to your computer and use it in GitHub Desktop.
Save hitsujixgit/f2da2d9488ac60f462c1 to your computer and use it in GitHub Desktop.
Call bxSlider
/**
* call bxSlider
*/
$(function($) {
var mySlider = $('.bxslider').bxSlider({
auto: true,
speed: 1000,
pause: 500,
mode: 'fade',
captions: false,
});
//windowサイズが変わったらmain()実行
$( window ).resize(function(){
mySlider.reloadSlider();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment