问题
Its sliding on other browser, but in Safari it change the image but not sliding.
I tried this code and also transition.js
$(document).ready(function() {
$('#Carousel').carousel({
interval: 1000
});
});
[data-slide-to] {
cursor: pointer;
}
$('.carousel').carousel()
$('.carousel').carousel('cycle');
回答1:
A little late ... but i fixed it by placing a block element with negative margin into each carousel item.
like so:
<div style="margin: 0 -5px"> </div>
来源:https://stackoverflow.com/questions/27417877/bootstrap-carousel-not-sliding-on-safari-web-browser-and-ipad-iphone