我正在使用bxslider,由于某种原因,在分页时不计算移动单个标签的正确距离。我已将包装器和窗口设置为与条目相同的大小,如果从分页器中选择滑块,则它会正确对齐。这种情况发生在FF和Chrome中。
其他人有类似问题吗?
$('#news').bxSlider({
auto: true,
pager: true,
pause: 5000,
wrapperClass: 'news-wrapper'
});
HTML:
<div id="news">
<div>
<h4 class="title">Title Four</h4>
<p>Content</p>
</div>
<div>
<h4 class="title">Title Four</h4>
<p>Content</p>
</div>
<div>
<h4 class="title">Title Four</h4>
<p>Content</p>
</div>
<div>
<h4 class="title">Title Four</h4>
<p>Content</p>
</div>
</div>