Files
ClassContent/历届学生/fontendseven/每天课程/2021-11-18/平滑过渡.html
2024-09-27 02:06:13 +08:00

61 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>平滑过渡</title>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
}
.main {
width: 410px;
height: 231px;
overflow: hidden;
position: relative;
}
.main img {
width: 100%;
height: 100%;
}
.menu {
width: 100%;
height: 45px;
position: absolute;
background: #000;
color: #fff;
text-align: center;
line-height: 45px;
position: absolute;
left: 0;
right: 0;
bottom: -45px;
transition: all 0.3s;
}
.main:hover .menu {
bottom: 0 !important;
}
</style>
</head>
<body>
<div class="main">
<img src="https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fup.enterdesk.com%2Fedpic_source%2F53%2F0a%2Fda%2F530adad966630fce548cd408237ff200.jpg&refer=http%3A%2F%2Fup.enterdesk.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1639829018&t=80bf1b5305782cf9e22394e469bccec1"
alt="">
<div class="menu">
<p>哈哈哈哈</p>
</div>
</div>
</body>
</html>