-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
60 lines (54 loc) · 1.38 KB
/
index.html
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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">
<title>Thanos</title>
<style>
.body {
margin: 0;
padding: 0;
overflow: hidden;
}
.imagens {
margin: 0 auto;
position: relative;
top: 0;
left: 0;
width:400px;
height: 400px;
}
.img1 {
position: absolute;
top: 0;
left: 0;
height: 100%;
transform-origin: left;
}
.imagens:hover .img1 {
transition: 4s;
transition-delay: 1s;
transform: translateX(50px);
opacity: 0;
filter: blur(10px);
}
.img2 {
width: 800px;
height: 400px;
transform: translateX(400px) scaleX(0);
transform-origin: left;
}
.imagens:hover .img2 {
transition: 8s;
transform: translateX(-400px) scaleX(1);
}
</style>
</head>
<body>
<div class="imagens">
<img class="img1" src="thanos.png" />
<img class="img2" src="efeito.png"/>
</div>
</body>
</html>