JCarouselLite 适用于两个以上的图像。
但对于TWO图像或li JCarouselLite无法正常工作。最后一次显示图像。
任何想法?
HTML :
<div id="explore_slider" style="width:980px !important;height:300px;">
<ul style="width:980px;height:300px;">
<li><img src="/images/feature_bicflex4.jpg" width="980px" height="300px" /></li>
<li><img src="/images/feature_bordeauxwine.jpg" width="980px" height="300px" /></li>
</ul>
</div>
的jQuery :
$(document).ready(function(){
$("#explore_slider").jCarouselLite({
speed: 1000,
auto: true
});
});
答案 0 :(得分:1)
添加参数visible: 1
。
$(document).ready(function(){
$("#explore_slider").jCarouselLite({
speed: 1000,
auto: true,
visible: 1
});
});