如果标题高度:100vh,则标题背景视频会调整大小

我在背景中播放视频时遇到问题。 我已经将标题高度设置为100vh(因为我希望它可以占据视口的全部高度)。 它确实! 但是,如果您实际调整浏览器窗口的大小,视频不会成为标题的100%,而只会变得越来越小。 这是视频的CSS

```
video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(placeholder.jpg) no-repeat;
    background-size: cover; 
}
```

这是真的..我使用vidBg。 他会看到这项工作

https://github.com/blakewilson/vidbg

链接地址: http://www.djcxy.com/p/88223.html

上一篇: Header background video resizes if header height: 100vh

下一篇: How to make an image bigger than the site, keeping the website at 100vh