我在我的测试网站上使用 jQuery 全宽滑块PlusSlider。
但问题是滑块在开始运行之前加载了一段时间。我无法找到导致滑块在运行前等待 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>