html点击按钮出现弹窗播放视频
时间: 2023-08-10 20:12:51 浏览: 289
你可以使用以下代码实现点击按钮弹窗播放视频:
```
<button onclick="showVideo()">播放视频</button>
<div id="videoModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeVideo()">×</span>
<iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<style>
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
</style>
<script>
function showVideo() {
document.getElementById("videoModal").style.display = "block";
}
function closeVideo() {
document.getElementById("videoModal").style.display = "none";
document.querySelector('#videoModal iframe').src = '';
}
document.querySelector('#videoModal iframe').onload = function () {
document.querySelector('#videoModal iframe').src += '?autoplay=1';
};
</script>
```
在这个代码中,你需要将 `VIDEO_ID` 替换为你要播放的视频的 YouTube 视频 ID。当用户点击按钮时,会触发 `showVideo` 函数,这个函数会显示一个模态框,然后在模态框中嵌入一个 iframe,这个 iframe 会加载指定的 YouTube 视频。当用户关闭模态框时,会触发 `closeVideo` 函数,这个函数会将模态框隐藏,并且停止视频的播放。同时,当视频加载完成后,会自动播放。
阅读全文