gpt4 book ai didi

css - 为嵌入式 YouTube 视频添加边框半径

转载 作者:技术小花猫 更新时间:2023-10-29 10:15:56 25 4
gpt4 key购买 nike

请参阅this fiddle .在加载 border-radius 之前立即注意工作正常。几毫秒后圆 Angular 消失。

如何为嵌入的 YouTube 视频添加圆 Angular ?

最佳答案

使用 CSS3 非常简单。你们都错过了扮演坏警察的 z-index

看下面的代码,我将播放器包裹在一个 div 中,根据需要设置它的高度和宽度,将溢出设置为隐藏,并根据需要设置 z-index。边框半径非常棒!

.player {
border-radius: 10px;
overflow: hidden;
z-index: 1;
height: 320px;
width: 480px;
}
<div class="player">
<iframe width="480" height="320" src="https://www.youtube.com/embed/aiegUzPX8Zc" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>

关于css - 为嵌入式 YouTube 视频添加边框半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7811719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com