给我一份html弹出播放窗口的代码
时间: 2023-07-28 18:11:18 浏览: 230
当然,这里是一个简单的HTML代码示例,实现了点击按钮后弹出一个播放窗口:
```html
<!DOCTYPE html>
<html>
<head>
<title>弹出播放窗口</title>
<style>
#videoContainer {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 640px;
height: 360px;
background-color: #000;
color: #fff;
}
</style>
</head>
<body>
<button onclick="showVideo()">点击播放</button>
<div id="videoContainer">
<video controls autoplay>
<source src="path/to/video.mp4" type="video/mp4">
<!-- 添加其他视频格式的来源 -->
</video>
</div>
<script>
function showVideo() {
var videoContainer = document.getElementById("videoContainer");
videoContainer.style.display = "block";
}
</script>
</body>
</html>
```
这段代码创建了一个按钮,当点击按钮后,会弹出一个带有播放器的视频窗口。你可以将实际的视频文件路径更新到`<source>`标签中的`src`属性。播放窗口使用了固定定位,位于浏览器窗口的中心位置。
请注意,这只是一个简单的示例,实际应用中可能需要更多的代码和样式调整。另外,你可能需要考虑不同浏览器的兼容性和其他细节。希望对你有所帮助!如果你有任何其他问题,请随时提问。
阅读全文