29

我在我的一个项目中使用了 vh(视口单位)css,但在移动 safari 中它不起作用。看起来 Safari 不知道如何处理 vh,但它在其他浏览器中运行良好。我想在有或没有 vh 的情况下做出同样的效果,请帮助我。顺便说一句,我正在使用facebox。(高度:50% 不能正常工作)

html:

 <div id="facebox" style="top: 0px; left: 0px; display: block;"> 
       <div class="popup">    
             <div class="body"> 
                  <div class="content_light">
            <div class="Lcontent_left"></div>
                    <div class="Lcontent_right">
                    <div class="Lright_content"></div>
                    </div>
                  </div>
              </div>
       </div>
    </div>

这是我的CSS:

#facebox .popup {
    display:block;
    position:relative;
margin:auto;
margin-top:0%;
  min-height:100vh;
  height:1px;
  border-radius:5px;
}

    #facebox .body {
  padding:0px;
  display:block;
  position:relative;
  background: #fff;
  width:100%;
  min-height:100vh;
  height:1px;
  margin:auto;
   border-radius:5px;
}
.Lcontent_left{
    position:relative;
    float:left;
    width:100%;
    height:50vh;
    /*min-height:250px;*/
    text-align:center;
    overflow:hidden;
    }
.Lcontent_left_fullscreen{
    display:none;
    }
.Lcontent_right{
    float:left;
    text-justify:inter-word;
    position:relative;
    width:100%;
    height:50vh;
    background-color:white;
    overflow:auto;
    font-family:"Open Sans",Helvetica,sans-serif;
    }
.Lright_content{
    position:relative;
    width:95%;
    margin:auto;
    margin-left:5px;
    overflow:auto;
    height:50vh;
    word-wrap:break-word;
    line-height: 1.5;
    font-size:16px;
    overflow:auto;
}
4

8 回答 8

10

您可以使用 jQuery 来解决这个问题。

$('container').height($(window).height()/2);

这适用于每个浏览器。希望能帮助到你。

于 2016-04-28T15:26:56.860 回答
9

在 CSS Tricks 上有一个很好的答案 - https://css-tricks.com/the-trick-to-viewport-units-on-mobile/

.my-element {
  height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}
// First we get the viewport height and we multiple it by 1% to get a value for a vh unit
let vh = window.innerHeight * 0.01;
// Then we set the value in the --vh custom property to the root of the document
document.documentElement.style.setProperty('--vh', `${vh}px`);
于 2019-09-05T07:25:51.787 回答
8

我今天遇到了这个修复:https ://github.com/rodneyrehm/viewport-units-buggyfill 它检查 vh/vw 单元的每个元素并将其转换为 px。我认为非常值得一试。

于 2014-04-23T15:18:21.003 回答
8

我也有这个问题,这是我的解决方案。

这等于height:100vh

document.getElementById("your-element").style.height = window.innerHeight + 'px';

您还可以将以下代码与jQuery一起使用,

$('your-element').height(window.innerHeight + 'px');

用野生动物园检查:)

于 2017-03-08T05:04:30.953 回答
7

我今天只使用了这个 CSS 方法,它有效。iOS 8.2 iPhone Safari:

html, body {
    ...
    width: -webkit-calc(100% - 0px);
    ...
}

想法:使用 calc 似乎可以让 Safari 将单位转换为 px 本身。现在我的页面在 iOS 上的 Chrome 和 Safari 上是正确的。

于 2015-03-22T03:51:42.277 回答
3

如果您需要在移动浏览器上使用全屏 div,请尝试使用固定位置和高度设置为 100% 的包装器。然后为您的弹出窗口设置 100% 高度。您可以使用顶部、左侧、右侧、底部属性以及高度和宽度以您喜欢的方式调整包装器和弹出窗口的位置。

在我必须在移动 chrome 上创建全屏弹出窗口的情况下,这些消除了移动浏览器地址栏自动隐藏的问题。

于 2017-09-02T06:35:04.323 回答
1

我发现这个库非常有用:https ://github.com/Hiswe/vh-check

它将计算正确 vh 的偏移值,并将其放入 css 变量中,以便您可以在 css 中使用它:

.main {
  height: calc(100vh - var(--vh-offset, 0px));
}
于 2018-10-18T09:29:23.413 回答
0

我的版本是“querySelector”,因为:如果我使用元素类“getelementbyid”不起作用。如果没有连接 jQuery 库,这种方式 js 是最通用的。 document.querySelector("your-element").style.height = window.innerHeight + 'px';

于 2018-11-23T13:07:31.710 回答