制作音乐播放界面代码
时间: 2023-08-29 10:06:03 浏览: 115
以下是一个简单的音乐播放界面代码:
```HTML
<!DOCTYPE html>
<html>
<head>
<title>Music Player</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
margin-top: 20px;
color: #333;
}
.container {
margin: 20px auto;
width: 300px;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.controls {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 20px;
}
audio {
width: 100%;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Music Player</h1>
<div class="container">
<audio src="song.mp3" controls></audio>
<div class="controls">
<button onclick="play()">Play</button>
<button onclick="pause()">Pause</button>
</div>
</div>
<script>
const audio = document.querySelector('audio');
const playBtn = document.querySelector('.controls button:first-of-type');
const pauseBtn = document.querySelector('.controls button:last-of-type');
function play() {
audio.play();
}
function pause() {
audio.pause();
}
</script>
</body>
</html>
```
这个界面包含一个音频标签和两个按钮,一个用于播放音频,另一个用于暂停音频。你可以将 `song.mp3` 替换为你自己的音频文件。
阅读全文