-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathindex.html
142 lines (117 loc) · 3.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>CSS3 3D</title>
<style>
* {margin:0; padding:0;}
body {
font-family:arial;
background:#efefef;
color:#999;
}
.geral {
width:1300px;
margin:0 auto;
padding:100px 0 0;
}
.destaque {
width:400px;
float:left;
text-align:center;
position:relative;
outline:1px solid red;
margin-right:20px;
-webkit-perspective: 600;
}
.destaque img {
width:370px;
border:10px solid #FFF;
-webkit-box-shadow:0px 0px 80px rgba(0,0,0,0.2);
-webkit-transition:0.4s;
-webkit-transform: rotateY(-30deg);
}
.destaque article {
background:rgba(255,255,255,0.8);
width:250px;
margin:0 0 0 -145px;
padding:20px;
position:absolute;
top:70px;
left:50%;
-webkit-transform: translateZ(70px) rotateY(-30deg);
-webkit-transition:0.4s;
}
.destaque:hover img {
-webkit-transition:0.4s;
-webkit-transform: rotateY(0deg);
}
.destaque:hover article {
background:rgba(255,255,255,1);
-webkit-transition:0.4s;
-webkit-transform: translateZ(0px) rotateY(0deg);
}
article {
display:block; -webkit-box-shadow:0px 0px 40px rgba(0,0,0,0.8);
}
article p {
text-align:center;
font-size:13px;
margin:0 0 15px;
}
article h1 {
font:italic 20px georgia;
color:#444;
margin-bottom:10px;
}
article a {
color:#FFF;
text-decoration:none;
background:#E38F2A;
padding:5px 10px;
font-size:12px;
border-radius:5px;
text-align:center;
display:inline-block;
}
article a:hover {
background:#CCC;
color:#FFF;
}
</style>
</head>
<body>
<div class="geral">
<section class="destaque">
<img src="images/img1.jpg">
<article>
<h1>Algum título</h1>
<p>
Lorem ispum dolor sit amet consectuer duran. Lorem ispum dolor sit dolor sit amet.
</p>
<a href="#" class="bt">Saiba mais</a>
</article>
</section>
<section class="destaque">
<img src="images/img2.jpg">
<article>
<h1>Outro título</h1>
<p>
Lorem ispum dolor sit amet consectuer duran.
</p>
<a href="#" class="bt">Saiba mais</a>
</article>
</section>
<section class="destaque">
<img src="images/img3.jpg">
<article>
<h1>Talvez outro título</h1>
<p>
Lorem ispum dolor sit amet consectuer duran. Lorem ispum dolor sit amet consectuer duran.
</p>
<a href="#" class="bt">Saiba mais</a>
</article>
</section>
</div>
</body>
</html>