1 Star 5 Fork 1

Allen Iverrui/jsp 音乐红茶馆网站

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
音乐播放器.html 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Allen Iverrui 提交于 2023-02-15 22:42 . first
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<audio src="music/问情.mp3" controls="controls" preload id="bg">
</audio>
<button onclick="bf(1);"> <img src='music/imag/播放.png' width="20" height="20" /><button>
<button onclick="bf(2);"> <img src='music/imag/暂停.png' width="20" height="20" /> </button>
<p>&nbsp; </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<script>
function bf(type){
var audio = document.getElementById('bg');
if(audio.paused){
if(type!=2)
audio.play();
}else {
if(type!=1)
audio.pause();
}
}
</script>
<video ishivideo="true" autoplay="true" isrotate="true" autoHide="true" controls="controls">
<source src="mv/lie.mp4" type="video/mp4">
</video>
<video src="mv/枕刀歌.mp4" controls="controls" autoplay></video>
<video width="320" height="240" controls>
<source src="mv/枕刀歌.mp4" type="video/x-ms-asf">
</video>
<embed src="mv/开始.mp4" height="200" width="200" >
<a href="mv/枕刀歌.mp4">Play a video file</a>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alleniverrui/jsp-music-website.git
git@gitee.com:alleniverrui/jsp-music-website.git
alleniverrui
jsp-music-website
jsp 音乐红茶馆网站
master

搜索帮助