<iframe allowFullscreen="false" src="../../resurse/test_video.mp4"></iframe>
,这就是我现在得到的,但是它不起作用,我找不到解决方案,所以我想知道它是否可能。
发布于 2021-03-17 00:55:18
使用不带allowFullscreen的iframe标签禁用播放器上的按钮
<!DOCTYPE html>
<html>
<head>
<title>ex</title>
</head>
<body>
<h2>Wont go fullScreen</h2>
<iframe src="https://www.youtube.com/embed/rwCJvSKzQkc"></iframe>
<h2>Wil go fullScreen because we gave it allowfullscreen property</h2>
<iframe allowfullscreen="0" src="https://www.youtube.com/embed/rwCJvSKzQkc"></iframe>
</body>
</html>
https://stackoverflow.com/questions/66551549
复制相似问题