64 lines
1.1 KiB
HTML
64 lines
1.1 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>Document</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
.zhezhao {
|
|
width: 436px;
|
|
height: 300px;
|
|
border: 1px solid #000;
|
|
background-image: url("./img/back.jpg");
|
|
position: relative;
|
|
}
|
|
.user {
|
|
width: 436px;
|
|
height: 70px;
|
|
background: #0000003b;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: none;
|
|
}
|
|
.user img {
|
|
width: 54px;
|
|
border-radius: 100%;
|
|
float: left;
|
|
margin-top: 10px;
|
|
margin-left: 18px;
|
|
}
|
|
.user p {
|
|
color: white;
|
|
display: inline-block;
|
|
margin: 0;
|
|
margin-top: 26px;
|
|
margin-left: 14px;
|
|
}
|
|
.zhezhao:hover .user {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="zhezhao">
|
|
|
|
|
|
<div class="user">
|
|
<img src="img/touxiang.jpg" alt="" srcset="">
|
|
<p>熊坤</p>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
</html> |