用JavaScript写一个含有视频播放和首页按键的网页
时间: 2023-09-01 19:10:19 浏览: 85
下面是一个简单的网页示例,其中包含一个视频播放器和一个首页按键:
```html
<!DOCTYPE html>
<html>
<head>
<title>视频播放页面</title>
</head>
<body>
<video id="myVideo" width="640" height="360" controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<br>
<button onclick="goToHomePage()">回到首页</button>
<script>
function goToHomePage() {
window.location.href = "index.html";
}
</script>
</body>
</html>
```
这个网页包含一个 `video` 元素,其中的 `source` 元素指定了视频文件的路径和类型。`controls` 属性用于显示视频播放器的控制栏,包括播放/暂停、音量、全屏等按钮。
网页下方有一个按钮,点击该按钮会调用 `goToHomePage()` 函数,将页面跳转到名为 `index.html` 的首页。在函数中,使用 `window.location.href` 属性来设置页面的 URL 地址。
阅读全文