本文介绍了不适当的品牌推广不适用于YouTube嵌入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我试图隐藏显示在右下角带有嵌入角的YouTube徽标。出于某种原因,modestbranding = 1无法正常运行:

I'm trying to hide the YouTube logo that appears in the bottom right had corner of an embed. For some reason modestbranding=1 is not working:

<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&amp;controls=0&amp;showinfo=0&amp;autoplay=1&amp;loop=1&amp;modestbranding=1&amp;playlist=ywFGJecodxQ" frameborder="0"></iframe>


推荐答案

问题在于如何添加参数。在链接内应该添加如下参数:

Problem is with how you added the parameters. Inside the link you are supposed to add parameters like so:

"http://www.myLink.com?first_param=1&second_param=0&third_param=3"

没有 amp; 之间。
因此,您的iFrame应该看起来像这样:

No amp; in between.As a result, your iFrame is supposed to look like this:

<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>

希望有帮助。

这篇关于不适当的品牌推广不适用于YouTube嵌入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 21:26