40 lines
817 B
HTML
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> |