1 Star 0 Fork 0

qx1021/web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
playsong.html 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
qinxiao 提交于 2023-12-26 01:32 . change name
<!DOCTYPE html>
<html>
<head>
<title>音乐播放器</title>
<style>
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
padding: 20px;
}
.song-list {
list-style-type: none;
padding: 0;
}
.song-list-item {
margin-bottom: 10px;
}
audio {
width: 100%;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>音乐播放器</h1>
<ul class="song-list">
<li class="song-list-item">
<button onclick="playSong('22102040123_秦潇_中国古代数学成就/BGM.mp3')">歌曲1</button>
</li>
<li class="song-list-item">
<button onclick="playSong('22102040123_秦潇_中国古代数学成就/BGM.mp3')">歌曲2</button>
</li>
<li class="song-list-item">
<button onclick="playSong('22102040123_秦潇_中国古代数学成就/BGM.mp3')">歌曲3</button>
</li>
</ul>
<audio id="audio" controls>
<source src="" type="audio/mpeg">
</audio>
</div>
<script>
function playSong(songUrl) {
var audioElement = document.getElementById('audio');
audioElement.src = songUrl;
audioElement.play();
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/Leen1021/web.git
git@gitee.com:Leen1021/web.git
Leen1021
web
web
master

搜索帮助