Created
August 21, 2014 04:06
-
-
Save hitsujixgit/f2da2d9488ac60f462c1 to your computer and use it in GitHub Desktop.
Call bxSlider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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