Files
ClassContent/历届学生/韩想/项目开发/课程项目/仿百度图片/index.html
2024-09-27 02:06:13 +08:00

40 lines
817 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
margin: 0;
padding: 0;
}
.box {
width: 200px;
height: 200px;
position: relative;
background: red;
overflow: hidden;
}
.box:hover .box_tas {
bottom: 0;
}
.box_tas {
width: 200px;
height: 50px;
background: blue;
position: absolute;
bottom: -50px;
transition: all ease 0.6s 0s;
}
</style>
</head>
<body>
<div class="box">
<div class="box_tas"></div>
</div>
</body>
</html>