nivo滑块图像调整大小问题

时间:2012-05-29 09:45:34

标签: javascript html5 css3 nivo-slider

我的网页上有nivo滑块。我需要显示各种宽度和高度的图像。较大的图像显示在较小的图像后面。请参考以下屏幕截图。

enter image description here

我必须删除在小图片后面显示更大的图像。是否有可能使用nivo滑块?

3 个答案:

答案 0 :(得分:10)

我用过它并且它有效:)

.theme-default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    width: 556px;
    height: 183px !important;
}

答案 1 :(得分:3)

添加此

<style>
    .slider-wrapper,.nivoSlider , img{
        width:500px;
        height:200px;
        margin-bottom:0px !important;
        border-radius:10px;
    }
</style>

答案 2 :(得分:0)

.theme-navigation-inside .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    height: auto;
}

我知道这可以解决问题