|
|
发表于 2025-6-7 13:02:26
|
查看全部
在代码 allowfullscreen 的后面添加 controlsList="nodownload" ,完整代码:
- <div align="center"><video width="854" controls style="max-width:100%" allowfullscreen controlsList="nodownload" controls="controls" poster ="{1}" > <source src="{2}" type="video/mp4" /> <source src="{2}" type="video/ogg" /> 您的浏览器不支持HTML5视频。 <div id="poster" class="poster" /> <img class="poster" /> </div> <style> /* 图片尺寸 */ .poster img { width: 100% !important; height: 100% !important; object-fit: cover; } </style></video></div>
复制代码 |
|