2025-02-06 13:55:16 +08:00
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<title id="pageTitle">视频播放</title>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2025-02-14 12:03:49 +08:00
|
|
|
<script>
|
|
|
|
|
// 视频标题、链接和说明
|
|
|
|
|
var videoTitle = "视频标题";
|
|
|
|
|
var videoUrl = "./Big Buck Bunny_1080P_60fps.mp4";
|
|
|
|
|
var videoDescription = "视频说明,\n描述视频内容";
|
|
|
|
|
</script>
|
2025-02-14 12:05:40 +08:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2025-02-06 13:55:16 +08:00
|
|
|
<div class="header">
|
2025-02-14 12:03:49 +08:00
|
|
|
<h1 id="videoTitle"></h1>
|
|
|
|
|
<div id="videoDescription" class="description"></div>
|
|
|
|
|
<div>
|
|
|
|
|
<button onclick="downloadVideo()">下载</button>
|
|
|
|
|
<button class="back-button" onclick="window.history.back()">返回</button>
|
|
|
|
|
</div>
|
2025-02-06 13:55:16 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="artplayer-app"></div>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/artplayer/dist/artplayer.js"></script>
|
|
|
|
|
<!-- 引入 artplayerPluginChapter 插件 -->
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/artplayer-plugin-chapter/dist/artplayer-plugin-chapter.js"></script>
|
2025-02-14 12:05:40 +08:00
|
|
|
<link rel="stylesheet" href="/videos/video.css">
|
|
|
|
|
<script src="/videos/video.js"></script>
|
2025-02-06 13:55:16 +08:00
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|