jquery轮播问题
我在这里找到了这个脚本 http://jsfiddle.net/g4txt/ 我正在使用这个轮播 http://www.thomaslanciaux.pro/jquery/jquery_carousel.htm
问题是它不会显示所有图像。
脚本正在运行,以滚动图像的方式运行,但不会显示全部图像,
尝试添加和删除 li ,您会注意到问题
吗?
谢谢
i have this script found here http://jsfiddle.net/g4txt/
i am using this carousel http://www.thomaslanciaux.pro/jquery/jquery_carousel.htm
the problem is that it won't show all images.
the script is running, in the way that is scrolling through images but it wont show them all
try adding and deleting li
's and you will notice the problem
any idea?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几件事:
首先:您的 img 标签需要关闭。
第二: $(function(){ ... } 与 $(document).ready(function(){ ... } 相同,因此是多余的。
第三:如果你将 li 向左浮动,那么你就全部了 。
干杯
A couple things:
First: your img tags need to be closed.
Second: $(function(){ ... } is the same as $(document).ready(function(){ ... } and is therefore redundant.
Third: if you float your li's left, you'll be all set.
Cheers