0

当我们在 css 肖像照片中设置 img 宽度时会拉伸。当我们不设置 img 宽度时 carouFredSel 在当前图像旁边显示其他图像的部分。我们如何在固定宽度的轮播中只显示一张(人像)照片?

----js--------

$('#carousel').carouFredSel({
        width: '100%',

        items: {
            visible: 3,
            minimum: 1,
            start: 0,
            width: '100%',
            align:'center'
        },
        scroll: {
            items: 1,
            duration: 800,
            timeoutDuration: 3000
        },
        prev: '#prev',
        next: '#next',
        pagination: {
            container: '#pager',
            deviation: 0
        },
        auto: {
            pauseOnHover: true
        }
    });

--------css------------

#carousel img {
display: block;
float: left;
/*width: 978px;*/
height: 652px;
background: white;
text-align: center;

}

4

1 回答 1

0

希望我理解正确。以下内容应使图像居中而不调整包含元素的大小

    $("#carousel").carouFredSel({
    width: "auto",
    height: "variable"  
})

而以下内容会将包含元素的大小调整为图像的宽度

    $("#carousel").carouFredSel({
    width: "variable",
    height: "variable"  
})
于 2013-04-23T21:06:55.887 回答