我的BXSLIDER出了问题。我想在页面加载后运行它。我使用了 onSliderLoad 参数,但我不知道在此函数中添加了什么。
非常感谢任何帮助。这是我的代码。
jQuery( document ).ready( function( $ ){
$( '.home-bxslider' ).bxSlider({
auto: false,
speed: 2500,
onSliderLoad: function(){
setTimeout( function(){
// this will allow to start the slider after the page is loaded.
}, 100 );
}
});
});