-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransiciones.html
More file actions
46 lines (45 loc) · 1.03 KB
/
transiciones.html
File metadata and controls
46 lines (45 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Propiedades en CSS - Transiciones</title>
<style>
.contenedor{
width: 300px;
height: 450px;
border: solid 1px;
margin: auto;
background-image: url(IMG/interestellar.jpg);
background-size: cover;
}
.vermas{
background: #000000;
height: 0px;
overflow: hidden;
color: #ffffff;
padding: 10px;
margin-top: 258px;
opacity: 0;
transition: all 1s;
}
.vermas p{
background: red;
text-align: center;
cursor: pointer;
}
.contenedor:hover .vermas{
opacity: 1;
height: 172px;
}
</style>
</head>
<body>
<div class="contenedor">
<div class="vermas">
Ambientada en un futuro distópico donde la humanidad está luchando por sobrevivir, cuenta la historia de un grupo de astronautas que viajan a través de un agujero de gusano cerca de Saturno en busca de un nuevo hogar para la humanidad.
<p>Ver más</p>
</div>
</div>
</body>
</html>