全屏背景视频并使其居中
我正在尝试创建一个网站,其中有一个使用 HTML5 播放的背景视频。 这一切都很完美,它按照我想要的方式工作。 但我也希望将图像保持在屏幕中央,即使用户调整浏览器大小也是如此。
<video id="video" src="video/video.mov" type="video/mov" autoplay loop></video>
我让它与一些 jQuery 一起工作,但想知道是否有一个 CSS 解决方案。
function resizeHandler() {
// scale the video
var documentHeight = $(document).height();
var documentWidth = $(document).width();
var ratio = $('#video').width() / $('#video').height();
if((documentWidth / documentHeight) < ratio) {
$('#video').css({
'width': 'auto',
'height': '100%',
'left': '0px',
'right': '0px',
'top': '0px',
'bottom': '0px'
})
var marginRight = $('#video').width() - $(document).width();
$('#video').css('left', -marginRight);
} else {
$('#video').css({
'width': '100%',
'height': 'auto',
'left': '0px',
'right': '0px',
'top': '0px',
'bottom': '0px'
})
var marginTop = $('#video').height() - $(document).height();
$('#video').css('top', -marginTop);
}
}
这是我编写的 jQuery,用于拉伸图像以适合屏幕,并保持图像居中。 不确定这在 CSS 中是否可行,但如果有人知道如何做,这可能会很好。
I'm trying to create a site where I have a background video playing with some HTML5.
This is all working perfectly, it works just the way I want it.
But I also want to keep the image centered on the screen, even when a user resizes the browser.
<video id="video" src="video/video.mov" type="video/mov" autoplay loop></video>
I got this to work with some jQuery, but was wondering if there is a CSS solution for this.
function resizeHandler() {
// scale the video
var documentHeight = $(document).height();
var documentWidth = $(document).width();
var ratio = $('#video').width() / $('#video').height();
if((documentWidth / documentHeight) < ratio) {
$('#video').css({
'width': 'auto',
'height': '100%',
'left': '0px',
'right': '0px',
'top': '0px',
'bottom': '0px'
})
var marginRight = $('#video').width() - $(document).width();
$('#video').css('left', -marginRight);
} else {
$('#video').css({
'width': '100%',
'height': 'auto',
'left': '0px',
'right': '0px',
'top': '0px',
'bottom': '0px'
})
var marginTop = $('#video').height() - $(document).height();
$('#video').css('top', -marginTop);
}
}
This is the jQuery I wrote to stretch the image to fit the screen, and to keep the image sort of centered.
Not sure if this is possible in CSS, but if somebody knows how to, this might be nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这个问题刚刚被引用到 地点视频高度为 100%使用 css 或 javascript 100% 宽度
我想我的答案可能就是您正在寻找的答案?
这是代码:
这是一个工作小提琴示例。
希望它能帮助别人:)
This question just have been referenced into Place video with 100% height & 100% width using css or javascript
I guess my answer for that could be the one you were looking for?
Here's the code:
And here's a working fiddle example.
Hope it'll help someone else :)
我会尝试将视频置于固定包装器内部的绝对位置中心。例如:
将视频放在宽度和高度为 100% 的固定包装内:
将视频置于带有自动边距的超大区域内居中:
并且使用最小宽度和最小高度将其拉伸到完整尺寸:
这里是最终结果:
这里还有一个 jsfiddle。
I would try centering the video with position absolute inside of a fixed wrapper. So for example:
Place your video inside of a fixed wrapper with 100% width and height:
Center the video inside of an extra large area with margin auto:
And stretch it to full size with min-width and min-height:
Here the final result:
Here also a jsfiddle.
这应该使
#video
成为视口的整个大小,并在用户滚动时保持在那里。This should make
#video
the entire size of the viewport and remain there when the user scrolls.使用 CSS 属性。对象适配:覆盖;
Use Css Property. object-fit: cover;