旋转木马背景图像没有加载jQuery负载

时间:2017-03-05 18:16:15

标签: javascript jquery html css twitter-bootstrap

我正在尝试使用jquery的.load函数将导航栏+轮播插入多个html页面 - 我的问题是背景照片似乎没有显示出来。

这是我尝试使用jQuery的.load加载的“header.html”文件的一部分:

<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">
            <div class="fill" style="background-image:url('img1.jpg');"></div>
            <div class="carousel-caption">
            </div>
        </div>
        <div class="item">
            <div class="fill" style="background-image:url('img2.jpg');"></div>
            <div class="carousel-caption">
            </div>
        </div>
        <div class="item">
            <div class="fill" style="background-image:url('img2.jpg');"></div>
            <div class="carousel-caption">
            </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>

以下是我用来加载轮播的脚本:

$(function() {
    $("#header").load("header.html", function() {
        $('.carousel').carousel({
            interval: 5000 //changes the speed
        })
    });
});

css(链接在我包含导航栏/轮播的所有页面中):

header.carousel {
    height: 50%;
}

header.carousel .item,
header.carousel .item.active,
header.carousel .carousel-inner {
    height: 100%;
}

header.carousel .fill {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

0 个答案:

没有答案