-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcss3实现漂亮ToolTips.html
48 lines (47 loc) · 1.3 KB
/
css3实现漂亮ToolTips.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css3实现漂亮ToolTips</title>
<meta http-equiv="X-UA-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width" initial-scale="1">
<link rel="stylesheet" type="text/css" href="style/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style/prettyToolTips.css">
</head>
<body>
<div class="nav">
<ul>
<li>
<a href="#" title="" class="tooltip tooltip-effect-1">Home
<span class="tooltip-content">
<i class="fa fa-home fa-fw"></i></span>
</a>
</li>
<li>
<a href="#" title="" class="tooltip tooltip-effect-2">About me
<span class="tooltip-content">
<i class="fa fa-user fa-fw"></i></span>
</a>
</li>
<li>
<a href="#" title="" class="tooltip tooltip-effect-3">Photography
<span class="tooltip-content">
<i class="fa fa-camera fa-fw"></i></span>
</a>
</li>
<li>
<a href="#" title="" class="tooltip tooltip-effect-4">Work
<span class="tooltip-content">
<i class="fa fa-briefcase fa-fw" ></i></span>
</a>
</li>
<li>
<a href="#" title="" class="tooltip tooltip-effect-5">Contact
<span class="tooltip-content">
<i class="fa fa-envelope fa-fw"></i></span>
</a>
</li>
</ul>
</div>
</body>
</html>