猫头鹰旋转木马高度调节



我正在构建一个在主页顶部有一个猫头鹰轮播的网站。该网站处于初步阶段,我的轮播有问题。

我希望轮播保持响应,同时调整图像以填充窗口/屏幕的整个高度。换句话说,我不希望图像调整大小;只是为了随着窗口变小时重新居中。现在,当窗口调整大小时,它们只是在缩小。

这是我当前的代码:

.HTML

    <section id="sidebar">
        <div id="owl" class="owl-carousel"> 
            <div class="item" id="item-1"><img src="assets/img/motel.jpg" alt=""></div>
            <div class="item" id="item-2"><img src="assets/img/gas.jpg" alt=""></div>
            <div class="item" id="item-3"><img src="assets/img/sofia.jpg" alt=""></div>
       </div>
    </section>

.JS:

    $(document).ready(function() {
        $("#owl").owlCarousel({
            navigation: true,
            slideSpeed: 300,
            paginationSpeed: 400,
            items: 1,
            autoplay: 3000,
            stopOnHover: true,
            loop: true,
        });
    });

.CSS:

    #owl .item img {
        display: block;
        widows: auto;
        height: 100%;
        min-height: 523px;
    }

以下是github上完整网站(到目前为止(的链接:https://jnikkiyoke.github.io/project/

任何帮助将不胜感激!

简单的方法是删除 <img/> 标签并使用 background

.item {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#item-3{
    background-image: url("assets/img/gas.jpg");
}

您还可以删除min-height #owl .item img

您可能还想添加 height: 100vh;width: auto; 。对不同的比率使用媒体查询。

相关内容

  • 没有找到相关文章

最新更新