Gau*_*093 4 html youtube iframe vimeo
我有一个包含 vimeo 视频的 iframe 如何在该视频中激活全屏标志
这是包含视频的 iframe 的 HTML。
<iframe width="500" height="281" frameborder="0" src="https://player.vimeo.com/video/155984146?color=ececec&title=0&byline=0&portrait=0;"></iframe>
Run Code Online (Sandbox Code Playgroud)
就用
allowfullscreen="allowfullscreen" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" webkitallowfullscreen="webkitallowfullscreen"
Run Code Online (Sandbox Code Playgroud)
在你的 iframe 标签下,它会变成这样
<iframe width="500" height="281" src="https://player.vimeo.com/video/155984146" allowfullscreen="allowfullscreen" mozallowfullscreen="mozallowfullscreen" msallowfullscreen="msallowfullscreen" oallowfullscreen="oallowfullscreen" webkitallowfullscreen="webkitallowfullscreen"> </iframe>
Run Code Online (Sandbox Code Playgroud)