在我的页面上使用 jQuery 实现 Easy Slider 1.7 时,我发现当页面首次加载时,ul
滑块中的两个图像都会显示,然后滑块正确加载,并且只显示第一张幻灯片。
纠正此问题的最佳方法是什么,以便div
在脚本正确加载之前不显示滑块?我正在使用此代码来运行它:
$(document).ready(function(){
$("#slider").easySlider({
auto: true,
continuous: true,
pause: 10000
});
});