Bootstrap Carousel无法在Safari网络浏览器和iPad / iPhone上滑动

问题描述 投票:1回答:1

它在其他浏览器上滑动,但在Safari中它会改变图像但不会滑动。

我尝试了这个代码,也尝试了transition.js

$(document).ready(function() {
        $('#Carousel').carousel({
            interval:   1000
        });
    });

[data-slide-to] {
cursor: pointer;
}

$('.carousel').carousel()

$('.carousel').carousel('cycle');
iphone twitter-bootstrap ipad safari carousel
1个回答
0
投票

有点晚......但我通过在每个轮播项目中放置带有负边距的块元素来修复它。

像这样:

<div style="margin: 0 -5px">&nbsp;</div>
© www.soinside.com 2019 - 2024. All rights reserved.