JCarousel Lite 并将更多图像添加到动态构建的列表中
我已将 jcarousel lite 集成到 magento 网站中作为产品图片库。
该页面动态构建必要图像的列表(通过 magento)。
但是,一旦将 jcarousel lite 添加到页面,就会添加 <<力>可以看出< ul>页面的一部分。
总之: 没有 jcarousel lite - 中图像的正确数量 使用 jcarousel lite - 这里的附加项目
是如何在相关页面上调用 jcarousel lite:
<script type="text/javascript">
jQuery(function() {
jQuery(".more-views").jCarouselLite({
btnNext: ".next",
visible: 1,
speed: 500,
btnPrev: ".prev"
});
});
</script>
任何关于为什么会发生这种情况的提示?
I've integrated jcarousel lite into a magento site for a product image gallery.
The page dynamically builds a list (via magento) of the necessary images.
However, as soon as jcarousel lite is added to the page, additional < li > can be seen in the < ul > part of the page.
In summary:
without jcarousel lite - correct number of images in the
with jcarousel lite - additional items in the
here's how jcarousel lite is being invoked on the page in question:
<script type="text/javascript">
jQuery(function() {
jQuery(".more-views").jCarouselLite({
btnNext: ".next",
visible: 1,
speed: 500,
btnPrev: ".prev"
});
});
</script>
any hints on why this is occuring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这就是 jCarouselLite 的工作方式(为此,几乎所有“轮播”或“滑块”类型的插件)——即,它们复制“视图之外”的项目,以便您获得平滑的过渡用户循环浏览这些项目。这是正常功能。
I believe that's the way jCarouselLite works (and to that end, almost all 'carousel' or 'slider' types of plugins) -- ie, they duplicate the items that are 'out of view' so that you get a smooth transition as the user cycles through the items. This is normal functionality.