如何在 vimeo 中激活全屏标志,iframe 中的 youtube 视频

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&amp;title=0&amp;byline=0&amp;portrait=0;"></iframe>
Run Code Online (Sandbox Code Playgroud)

Gau*_*093 5

就用

 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)