Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -4,122 +4,30 @@
|
||||
<title id="pageTitle">视频播放</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
.artplayer-app {
|
||||
width: 100%;
|
||||
height: calc(100vh - 50px);
|
||||
/* 调整高度以适应标题栏 */
|
||||
margin: 0;
|
||||
border: 1px solid #ccc;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f9;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
/* 设置body高度为视口高度 */
|
||||
overflow: hidden;
|
||||
/* 隐藏滚动条 */
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px 20px;
|
||||
background-color: #fff;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #333;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 10px 20px;
|
||||
background-color: #007bff;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<link rel="stylesheet" href="/videos/video.css">
|
||||
<script src="/videos/video.js"></script>
|
||||
<script>
|
||||
// 视频标题、链接和说明
|
||||
var videoTitle = "视频标题";
|
||||
var videoUrl = "./Big Buck Bunny_1080P_60fps.mp4";
|
||||
var videoDescription = "视频说明,\n描述视频内容";
|
||||
</script>
|
||||
<div class="header">
|
||||
<h1 id="videoTitle">视频播放</h1>
|
||||
<button onclick="downloadVideo()">下载</button>
|
||||
<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>
|
||||
</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>
|
||||
<script>
|
||||
// 定义视频标题和链接
|
||||
var videoTitle = "视频标题";
|
||||
var videoUrl = "./video.mp4";
|
||||
|
||||
// 设置视频标题
|
||||
document.getElementById('videoTitle').innerText = videoTitle;
|
||||
|
||||
// 设置页面标题
|
||||
document.getElementById('pageTitle').innerText = videoTitle + " - 播放";
|
||||
|
||||
var art = new Artplayer({
|
||||
container: '.artplayer-app',
|
||||
url: videoUrl,
|
||||
autoSize: true,
|
||||
fullscreen: true,
|
||||
fullscreenWeb: true,
|
||||
miniProgressBar: true,
|
||||
autoOrientation: true,
|
||||
autoplay: false, // 禁用自动播放
|
||||
muted: false, // 不自动静音
|
||||
setting: true,
|
||||
aspectRatio: true,
|
||||
fullscreen: true,
|
||||
lang: 'zh-cn',
|
||||
fastForward: true,
|
||||
|
||||
plugins: [
|
||||
artplayerPluginChapter({
|
||||
chapters: [
|
||||
{ start: 0, end: 18, title: '1' },
|
||||
{ start: 18, end: 36, title: '2' },
|
||||
{ start: 36, end: 54, title: '3' },
|
||||
{ start: 54, end: 72, title: '4' },
|
||||
{ start: 72, end: Infinity, title: '5' },
|
||||
]
|
||||
}),
|
||||
],
|
||||
});
|
||||
|
||||
function downloadVideo() {
|
||||
fetch(videoUrl)
|
||||
.then(response => response.blob())
|
||||
.then(blob => {
|
||||
const link = document.createElement('a');
|
||||
link.href = URL.createObjectURL(blob);
|
||||
link.download = videoTitle + '.mp4'; // 设置下载文件名
|
||||
document.body.appendChild(link);
|
||||
link.click();
|
||||
document.body.removeChild(link);
|
||||
URL.revokeObjectURL(link.href);
|
||||
})
|
||||
.catch(error => console.error('Error downloading the video:', error));
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,33 +0,0 @@
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<title id="pageTitle">视频播放</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<link rel="stylesheet" href="video.css">
|
||||
<script src="video.js"></script>
|
||||
<script>
|
||||
// 视频标题、链接和说明
|
||||
var videoTitle = "视频标题";
|
||||
var videoUrl = "./Big Buck Bunny_1080P_60fps.mp4";
|
||||
var videoDescription = "视频说明,\n描述视频内容";
|
||||
</script>
|
||||
<div class="header">
|
||||
<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>
|
||||
</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>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user