【发布时间】:2020-11-28 18:06:24
【问题描述】:
我正在使用 iframe 播放 youtube 视频。它显示全屏图标,但单击时显示“全屏不可用”。我正在使用 allfullscreen 仍然无法正常工作。以下是我目前尝试过的代码。
代码 1。
<iframe width="760" height="415" id={showVid.id} title={showVid.title} src={showVid.link} allowfullscreen allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"></iframe>
代码 2。
<iframe width="760" height="415" id={showVid.id} title={showVid.title} src={showVid.link} allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture fullscreen"></iframe>
【问题讨论】:
标签: javascript html iframe youtube-iframe-api