132 lines
2.4 KiB
HTML
132 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>qq音乐案例</title>
|
|
<style>
|
|
body,ul,li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
li {
|
|
list-style: none;
|
|
}
|
|
.drown li{
|
|
float: left;
|
|
margin-left: 20px;
|
|
position: relative;
|
|
}
|
|
.menu {
|
|
display: none;
|
|
position: absolute;
|
|
}
|
|
.menu li {
|
|
clear: left;
|
|
margin-left: 0px;
|
|
width: 100px;
|
|
}
|
|
.drown li:hover .menu{
|
|
display: block;
|
|
}
|
|
|
|
|
|
.drop-list {
|
|
display: none;
|
|
}
|
|
.search:focus+.drop-list{
|
|
display: block;
|
|
}
|
|
|
|
.box {
|
|
width: 224px;
|
|
height: 224px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
}
|
|
.box img {
|
|
width: 224px;
|
|
height: 224px;
|
|
transition: all 0.3s;
|
|
}
|
|
.play {
|
|
width: 49px;
|
|
height: 49px;
|
|
background: #fff;
|
|
border-radius: 100%;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -24.5px;
|
|
margin-top: -24.5px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
transition: all 0.8s;
|
|
}
|
|
.play-action {
|
|
width: 0px;
|
|
height: 0px;
|
|
background: #d2c4c4;
|
|
border-top: 16px solid #fffcfc;
|
|
border-left: 16px solid #000;
|
|
border-right: 16px solid #fff;
|
|
border-bottom: 16px solid #fff;
|
|
margin: 0 auto;
|
|
margin-top: 8px;
|
|
margin-left: 19px;
|
|
}
|
|
.box:hover img {
|
|
width: 230px;
|
|
height: 230px;
|
|
}
|
|
.box:hover .play {
|
|
opacity: 1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="drown">
|
|
<ul>
|
|
<li>我的音乐</li>
|
|
<li>
|
|
客户端音乐
|
|
<ul class="menu">
|
|
<li>客户端音乐1</li>
|
|
<li>客户端音乐2</li>
|
|
</ul>
|
|
</li>
|
|
<li>音乐号</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<br><br><br><br><br><br><br><br>
|
|
|
|
<input class="search" type="text" placeholder="搜索音乐"/>
|
|
<ul class="drop-list">
|
|
<li>该死的温柔</li>
|
|
<li>该死的温柔</li>
|
|
<li>该死的温柔</li>
|
|
<li>该死的温柔</li>
|
|
</ul>
|
|
|
|
<br><br><br><br><br><br><br><br>
|
|
|
|
<div class="box">
|
|
<img src="https://p.qpic.cn/music_cover/PiajxSqBRaEISibhtdxpkLprufpT7OzywmzpYlQtrEhYnQ0Rb0ibdicucw/300?n=1" alt="">
|
|
<div class="play">
|
|
<div class="play-action"></div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html> |