-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlianjie.html
52 lines (51 loc) · 948 Bytes
/
lianjie.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>链接</title>
<style>
a{
font-size:300px;
background-color:#0f9;
text-decoration:none;
}
a:link{
color:#f00;
}
a:visited{
color:#fff;
}
a:hover{
color:red;
}
a:active{
color:blue;
}
.b{
width: 100px;
height: 200px;
background-color:#0f0;
position: relative;
}
.b .c{
width:200px;
height:400px;
background: url("http://img.taopic.com/uploads/allimg/120619/188760-12061Z9134839.jpg") no-repeat;
position: absolute;
left:102px;
top:-100px;
opacity: 0;
transition:all 1s;
}
.b:hover .c{
opacity: 100;
}
</style>
</head>
<body>
<a href="//baidu.com">百度</a>
<div class='b'>
<div class='c'></div>
</div>
</body>
</html>