如何调整jcarousel脚本的高度和宽度?

时间:2013-09-16 15:08:15

标签: jquery html css width jcarousel

我只是喜欢jcarousel脚本,我正在尝试将其整合到我的网站www.careylist.com中。

对于我的生活,我根本无法让它正常工作。首先,我需要能够调整脚本的宽度和高度,但每次我尝试通过在线自助操作来实现它都会失败。此时,所有图像都列为无序列表,如下所示。

enter image description here

这是脚本使用:

<script type="text/javascript">

function mycarousel_initCallback(carousel)
{
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
        carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
        carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};


/**
 * Overwrite for having a carousel with dynamic width.
 */
.jcarousel-skin-tango .jcarousel-container-horizontal {
    width: 85%;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width: 100%;
    height:300px;

}


jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        auto: 2800,
    visible:5,
    circular: true,
    speed: 1100,
    scroll: +1,
    vertical: false,
    circular: true,
        initCallback: mycarousel_initCallback
    });
});
</script>

如果我删除上面脚本中处理宽度和高度的部分,它可以工作,但它有默认的宽度和高度。

我做错了什么?

0 个答案:

没有答案