我面临一个问题,当我在给定iframe中使用youtube嵌入式代码时,它会显示相关视频,并且我想从iframe中隐藏相关视频栏吗?
那么有什么办法可以隐藏相关视频?
请参阅下面的图片和代码:
<iframe
id="ytplayer"
type="text/html"
width="720"
height="405"
src="https://www.youtube.com/embed/M7lc1UVf-VE?autoplay=1&controls=0&disablekb=1&fs=0&modestbranding=1&iv_load_policy=3";
frameborder="0"
allowfullscreen>
<iframe
id="ytplayer"
type="text/html"
width="720"
height="405"
src="https://www.youtube.com/embed/M7lc1UVf-VE?rel=0";
frameborder="0"
allowfullscreen>
答案 0 :(得分:0)
您必须使用'?'在向网址添加参数时。使用以下命令更新src
"https://www.youtube.com/embed/M7lc1UVf-VE?rel=0"
答案 1 :(得分:0)
您可以使用
用CSS隐藏它.html5-endscreen{
display: none !important;
}