-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimg.html
53 lines (53 loc) · 1.07 KB
/
img.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图片</title>
<style>
figure{
width:500px;
height: 300px;
border:10px solid #fff;
box-shadow: 0px 0px 20px 0px #000;
overflow:hidden;
position:relative;
}
figure img{
transition:all.5s ;
transform:scale(1)
}
figure figcaption{
position:absolute;
text-align:center;
left:0;
z-index:3;
bottom:0;
background-color:rgba(255,255,255,0);
height: 120px;
width: 100%;
color:rgba(0,60,0,0)
}
figure:hover img{
transform:scale(1.1)
}
figure:hover figcaption{
color:rgba(0,60,0,1);
background-color:rgba(255,255,255,0.5);
}
figcaption{
font-style:italic;
font-weight:100;
letter-spacing:8px;
font-size:40px;
}
</style>
</head>
<body>
<div class="tu">
<figure>
<figcaption>百度</figcaption>
<img src="https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png" alt="">
</figure>
</div>
</body>
</html>