Twitter Bootstrap 轮播不适用于旧版浏览器
根据文档,这应该足以运行 Twitter Bootstrap:
<div class="carousel">
<div class="carousel-inner">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
$('.carousel').carousel()
我还包括 < code>jquery.transitions 插件,所以我认为它会在旧版浏览器中降级。
不幸的是,幻灯片在 Firefox 3.6 中根本不移动。为什么?
Per the docs, this should be enough to run Twitter Bootstrap:
<div class="carousel">
<div class="carousel-inner">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
$('.carousel').carousel()
I also included jquery.transitions
plugin so I assumed it would degrade in older browsers.
Unfortunately, the slides don't move at all in Firefox 3.6. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您需要将
slide
类添加到您的轮播中才能使simple
版本正常工作:示例轮播有它,并且代码中有一个检查:
有点奇怪但他们没有提到这一点。
It looks like you need to add
slide
class to your carousel for thesimple
version to work:Sample carousel has it, and there is a check in the code:
Kind of strange they didn't mention it, though.