我正在尝试隐藏右下角显示的嵌入了角落的YouTube徽标。由于某种原因,modestbranding = 1不起作用:
<iframe class="gtms-intro" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" width="1280" height="720" src="https://www.youtube.com/embed/ywFGJecodxQ?rel=0&controls=0&showinfo=0&autoplay=1&loop=1&modestbranding=1&playlist=ywFGJecodxQ" frameborder="0"></iframe>
答案 0 :(得分:5)
controls=0
和modestbranding=1
的组合在右下角还会显示一个很大的YouTube徽标。 showinfo
自2018年9月以来什么也没做。
答案 1 :(得分:3)
问题在于您如何添加参数。在链接中你应该添加如下参数:
"http://www.myLink.com?first_param=1&second_param=0&third_param=3"
中间没有amp;
。
因此,您的iFrame应该如下所示:
<iframe class="gtms-intro" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" width="1280" height="720" src="https://www.youtube.com/embed/ywFGJecodxQ?rel=0&controls=0&showinfo=0&autoplay=1&loop=1&modestbranding=1&playlist=ywFGJecodxQ" frameborder="0"></iframe>
希望它有所帮助。
答案 2 :(得分:1)
如果您与showinfo=0
同时拥有modestbranding=1
,则YouTube徽标将更加显眼。
我的结论是,无法删除与youtube的所有链接,因此您必须选择一个。
这些图像显示了播放时的视觉效果。
showinfo=0&modestbranding=0
showinfo=0&modestbranding=1
showinfo=1&modestbranding=1
答案 3 :(得分:1)
我刚刚发现当我添加color = white时,谦虚品牌对我来说不再起作用,但是当我将其变为color = red时,YT徽标消失了。希望它可以帮助遇到类似问题的人。