自适应YouTube视频嵌入

本文介绍了如何解决嵌入YouTube视频时遇到的问题,强调了需要保持视频的宽高比以确保显示正常。通过将视频包裹在容器div中并应用特定CSS,可以实现响应式布局。关键CSS代码涉及使用百分比的padding-bottom来根据视频的16:9或4:3等不同比例调整填充。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

The problem with embedding YouTube videos is that they are an iframe and iframes need to be given an exact height and width otherwise they will look funky.

嵌入YouTube视频的问题在于它们是iframe并且iframe必须具有确切的高度和宽度,否则它们看起来会很时髦。

And we need to keep the proportions, based on the video aspect ratio.

而且,我们需要根据视频宽高比保持比例。

To have a YouTube video be displayed responsive in your page, first wrap it into a container div:

要使YouTube视频在页面中显示为响应式,请先将其包装到容器div中:

<div class="video-container">
  <iframe src="https://www.youtube.com/embed/klZNNUz4wPQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

Then add this CSS to your site:

然后将此CSS添加到您的站点:

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

See that magic number, 56.25%? That’s needed as a padding when the aspect ratio of a video is 16:9. (9 is 56.25% of 16).

看到那个魔术数字56.25% ? 当视频的高宽比为16:9时,这是需要填充的。 (9是16的56.25%)。

If your video is 4:3 for example, set it to 75%.

例如,如果您的视频是4:3,请将其设置为75%。

翻译自: https://flaviocopes.com/responsive-youtube-videos/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值