html制作音乐播放界面,要求界面布局合理,有播放画面、有歌名有歌词,,有创意
时间: 2024-01-12 19:03:39 浏览: 128
以下是一个简单的 HTML 音乐播放器界面:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>音乐播放器</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f8f8f8;
font-family: Arial, sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
font-size: 32px;
margin: 0;
padding-bottom: 20px;
}
.music-player {
margin: 0 auto;
width: 500px;
height: 500px;
background-color: #eee;
position: relative;
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.music-player video {
width: 100%;
height: 100%;
object-fit: cover;
}
.music-player .song-info {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 80px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
.music-player:hover .song-info {
opacity: 1;
}
.music-player .song-title {
font-size: 24px;
margin: 0;
padding-bottom: 10px;
}
.music-player .lyrics {
font-size: 18px;
margin: 0;
padding: 10px;
text-align: center;
white-space: pre-wrap;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="container">
<h1>音乐播放器</h1>
<div class="music-player">
<video src="music.mp4" autoplay loop></video>
<div class="song-info">
<h2 class="song-title">歌曲名称</h2>
<p class="lyrics">歌词</p>
</div>
</div>
</div>
</body>
</html>
```
这个界面包括一个容器 `.container`,一个音乐播放器 `.music-player`,以及歌曲名称和歌词的信息框 `.song-info`。其中,音乐播放器采用 HTML5 的 `<video>` 标签来播放音乐视频。鼠标悬停在音乐播放器上时,会显示歌曲名称和歌词信息。你可以根据自己的需要自定义播放器的样式和内容。
阅读全文