阻止 youtube 嵌入 youtube 徽标?
Block you tube embed's you tube logo?
我正在使用这个你管嵌入
<iframe id="ytplayer" style="box-shadow:0px 0px 5px black;" type="text/html" width="100%" height="350" src="https://www.youtube.com/embed/<?php echo$youtube_video_id;?>?autoplay=1&showinfo=0&loop=0&modestbranding=1&rel=0" frameborder="0" allowfullscreen></iframe>
我想删除 youtube 徽标。
那么有什么办法可以屏蔽这张图片吗?
https://s.ytimg.com/yts/img/watermark_ringo-vflPWbiPS.png
这是玩家的形象
enter image description here
您应该将 ?modestbranding=1 添加到 url 以删除此徽标。
示例:
<iframe width="560" height="315" src="https://www.youtube.com/embed/_K2cH74f8MU?modestbranding=1" frameborder="0" allowfullscreen></iframe>
我正在使用这个你管嵌入
<iframe id="ytplayer" style="box-shadow:0px 0px 5px black;" type="text/html" width="100%" height="350" src="https://www.youtube.com/embed/<?php echo$youtube_video_id;?>?autoplay=1&showinfo=0&loop=0&modestbranding=1&rel=0" frameborder="0" allowfullscreen></iframe>
我想删除 youtube 徽标。 那么有什么办法可以屏蔽这张图片吗?
https://s.ytimg.com/yts/img/watermark_ringo-vflPWbiPS.png
这是玩家的形象 enter image description here
您应该将 ?modestbranding=1 添加到 url 以删除此徽标。
示例:
<iframe width="560" height="315" src="https://www.youtube.com/embed/_K2cH74f8MU?modestbranding=1" frameborder="0" allowfullscreen></iframe>