bootstrap carousel不在firefox中工作

时间:2016-01-27 09:08:24

标签: javascript jquery css twitter-bootstrap

在我的网站上有旋转木马滑块上的问题,它只适用于chrome,它不适用于mozilla

我的实时网站网址为:http://www.umzug-preise.com/home

我使用了以下代码。

<header id="myCarousel" class="carousel slide">
        <!-- Indicators -->
        <ol class="carousel-indicators">
            <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
            <li data-target="#myCarousel" data-slide-to="1"></li>
            <li data-target="#myCarousel" data-slide-to="2"></li>
        </ol>

        <!-- Wrapper for Slides -->
        <div class="carousel-inner">
            <div class="item active">
                <!-- Set the first background image using inline CSS below. -->
                <div class="fill" style="background:url(images/slider1.jpg);"></div>

            </div>
            <div class="item">
                <!-- Set the second background image using inline CSS below. -->
                <div class="fill" style="background:url(images/slider2.jpg);"></div>

            </div>
         <!--   <div class="item">
                <div class="fill" style="background:url(images/slider1.jpg);"></div>

            </div>-->
        </div>

        <!-- Controls -->
        <a class="left carousel-control" href="#myCarousel" data-slide="prev">
            <span class="icon-prev"></span>
        </a>
        <a class="right carousel-control" href="#myCarousel" data-slide="next">
            <span class="icon-next"></span>
        </a>

    </header>

2 个答案:

答案 0 :(得分:2)

问题是容器高度。 .fill类没有固定的高度。因此.carousel-inner的{​​{1}}正在获得height: auto。这也不适用于IE,我认为幸运的是它适用于Chrome。你需要设置

height = 0

答案 1 :(得分:0)

就我而言,我通过删除(或评论出)这些bootstrap.css行来解决它:

-webkit-perspective: 1000px;
    perspective: 1000px;
课程.carousel-inner > .item

中的