Files
ClassContent/历届学生/罗朝/2019-04-04/index.html
2024-09-27 02:06:13 +08:00

55 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">
<link rel="stylesheet" href="./css/clear.css">
<title>仿百度效果</title>
<style>
.main {
width: 500px;
height: 313px;
background: url("./img/back.jpeg");
position: relative;
overflow: hidden;
}
.main_info {
position: absolute;
width: 100%;
height: 60px;
left: 0;
bottom: -60px;
background: #0000007d;
color: #fff;
padding-top: 8px;
padding-left: 8px;
box-sizing: border-box;
transition: all .3s ease;
}
.main_info span {
color: #8d8d8d;
}
.main:hover .main_info {
bottom: 0px;
}
.main:hover+.demo {
color: red;
}
</style>
</head>
<body>
<div class="main">
<div class="main_info">
<p>第一次发帖必须是小福利</p>
<span>1920x1200</span>
</div>
</div>
<p class="demo">你好</p>
</body>
</html>