我在PlusSlider上使用jQuery全宽滑块test website。
但问题是滑块在开始运行之前的某个时间正在加载。我无法找到导致滑块在运行之前等待2-6秒的原因
<script type="text/javascript">
$(document).ready(function(){
$('#slider3').plusSlider({
fullWidth: true,
autoPlay: true,
displayTime: 5000, // The amount of time the slide waits before automatically moving on to the next one. This requires 'autoPlay: true'
sliderType: 'slider' // Choose whether the carousel is a 'slider' or a 'fader'
});
});
</script>