0

我目前正在处理的主页上有一个滑块。我正在尝试实现占据屏幕整个宽度的完整视口高度。

我目前可以实现这一点的唯一方法是拉伸图像,或者图像不居中。

图像需要在水平和垂直方向上大致居中对齐,以便客户在任何宽度的浏览器上都可以看到图像的中心,并且不会过度拉伸图像。

我试过背景尺寸:封面;在没有成功的元素上,因为它不是背景 img。容器目前有 100vh,但宽度是问题。

问题位于此处http://joeybox.info/。我意识到图像上方的菜单和徽标 100 视口高度将位于“折叠”下方,但是一旦我弄清楚 css,我最终会将徽标和菜单放在图像上。

我尝试了在堆栈溢出论坛中找到的许多解决方案,但在我的场景中都没有。

在删除不正确的代码后,我当前的 css 是:-

.bx-wrapper img {display: inherit;
    height: 100vh;
    max-width: inherit;}

.ewic-wid-imgs {height: 100vh;
    max-width: unset;
    width: unset;}

.bx-wrapper img {display: inherit;
    height: 100vh;
    max-width: inherit;}

html=

<div class="slider-box">
    <div id="ewic-con-385">
    <div style="display: none;" id="preloader-385" class="sliderpreloader">
    </div>
    <div style="max-width: 100%; margin: 0px auto;" class="bx-wrapper">
    <div style="width: 100%; overflow: hidden; position: relative; height: 633px;" class="bx-viewport">
    <ul style="width: 315%; position: relative; left: 0px;" class="bxslider-385">
    <li style="float: left; list-style: outside none none; position: relative; width: 1349px; margin-right: 10px;" class="ewic-slider bx-clone">
    <img title="Qw Direct Leather Keyrings" class="ewic-wid-imgs" src="http://joeybox.info/wp-content/uploads/2015/07/qw-direct-leather-keyrings.jpg">
    <div class="ewic-caption"><span>Qw Direct Leather Keyrings</span></div>
    </li><li style="float: left; list-style: outside none none; position: relative; width: 1349px; margin-right: 10px;" class="ewic-slider">
    <img title="Qw Direct Leather Keyrings" class="ewic-wid-imgs" src="http://joeybox.info/wp-content/uploads/2015/07/qw-direct-leather-keyrings.jpg">
    <div class="ewic-caption"><span>Qw Direct Leather Keyrings</span>
    </div></li><li style="float: left; list-style: outside none none; position: relative; width: 1349px; margin-right: 10px;" class="ewic-slider bx-clone">
    <img title="Qw Direct Leather Keyrings" class="ewic-wid-imgs" src="http://joeybox.info/wp-content/uploads/2015/07/qw-direct-leather-keyrings.jpg"><div class="ewic-caption">
    <span>Qw Direct Leather Keyrings</span>
    </div></li></ul></div>
    <div class="bx-controls bx-has-controls-direction bx-has-controls-auto">
    <div class="bx-controls-direction"><a class="bx-prev disabled" href="">Prev</a>
    <a class="bx-next disabled" href="">Next</a></div><div class="bx-controls-auto"><div class="bx-controls-auto-item"><a class="bx-start active" href="">Start</a></div>
    <div class="bx-controls-auto-item"><a class="bx-stop" href="">Stop</a></div></div></div></div><br>
</div>
</div>    
4

2 回答 2

0

为此,您可以在 .bx-wraper 中添加图像:

.bx-wrapper img {
  display: inherit;
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  margin:auto;
  max-width: inherit;
}

现在您需要将父级设置li为相对:

.bx-wrapper ul li {
  position:relative;
  width:100%;
  height:100%;
  list-style: none !important;
  margin: 0 !important;
}

并更改您的父母 ul:

.bx-wrapper ul{
    width:100%;
}
于 2015-07-14T11:25:07.013 回答
0

我通过更改图像滑块解决了上述问题。我的新滑块插件(Envoke Supersized)使用背景图像并且更容易使用 background-size:cover; css。虽然在移动宽度上的这个完整视口高度与我的图像看起来不太好,所以我在移动宽度上使用了 40vh。

我建议任何人尝试这样做以确保您的图像是背景图像,或者将滑块替换为静态背景图像以用于较小的浏览器宽度。

于 2015-07-15T02:32:59.480 回答