0

我正在尝试让 jQuery Cycle 处理多个背景图像,但不确定为什么它不起作用。我只是没有显示任何图像。

我在这里有一个示例代码:

http://jsfiddle.net/6kjA6/1/

$(document).ready(function() {

    $('#headerRotate').cycle({
        fx: 'fade',
        timeout: 2000
    });
});

<div id="headerRotate">
    <div style="background:url('http://www.lilaclaneequestrian.com/_uploads/headers/692316_image-2.jpeg') no-repeat left top; height: 550px; background-size: 100%;"></div>
    <div style="background:url('http://www.lilaclaneequestrian.com/_uploads/headers/23874_image-4.jpeg') no-repeat left top; height: 550px; background-size: 100%;"></div>
</div>
4

1 回答 1

2

在 div 上设置一些 CSS 来处理它:http: //jsfiddle.net/6kjA6/5/

#headerRotate { width: 100%; }    
#headerRotate div { width: 100%; }
于 2013-11-14T18:24:37.423 回答