jcarousel 100%li项目宽度?

时间:2013-08-27 23:54:58

标签: jquery width html-lists jcarousel

我正试图让jcarousel以li宽度100%工作。即,浏览器窗口具有的宽度,即li项的宽度,如果窗口缩小,文本将相应地流动并仍然用作滑块。

这是我的小提琴......

http://jsfiddle.net/kirkbross/3FhcQ/38/

1 个答案:

答案 0 :(得分:0)

我发现我必须使用以下示例中的jQuery:

http://sorgalla.com/jcarousel/examples/responsive/

$(document).ready(function() {
    var jcarousel = $('.carousel-stage');

    jcarousel
        .on('jcarousel:reload jcarousel:create', function () {
            var width = jcarousel.innerWidth();
            var height = jcarousel.innerHeight();

            if (width < 560) {
                jcarousel.jcarousel('items').css('width', width + 'px');
                jcarousel.jcarousel('items').css('height', (width*0.666) + 'px');
            } else {
                jcarousel.jcarousel('items').css('width', '600px');
                jcarousel.jcarousel('items').css('height', '400px');
            }

        })
});        

和CSS - 在这种情况下为连接的轮播

@media screen and (max-width: 660px) {
    .connected-carousels,
    .connected-carousels .stage,
    .connected-carousels .navigation,
    .connected-carousels .carousel-stage,
    .connected-carousels .carousel-navigation,
    .carousel-stage li img {
        width: 100%;
        height:auto;
    }
    .carousel-stage li img {
        padding: 0;
        margin: 0;
        vertical-align: top;
    }
    .connected-carousels .prev-stage, .connected-carousels .next-stage {
        width: 50%;
        height: 100%;
    }
    .jcarousel-clip-horizontal 
    {
        width: 100%;    
        overflow: hidden;
    }
}