-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·141 lines (129 loc) · 4.77 KB
/
index.html
File metadata and controls
executable file
·141 lines (129 loc) · 4.77 KB
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Sweet Tooltip | Webstuffshare.com</title>
<meta name="description" content="Tutorial : Sweet Tooltip">
<meta name="author" content="Webstuffshare">
<link rel="stylesheet" href="demo.css?v=2">
<link rel="stylesheet" href="sweet-tooltip.css">
</head>
<body>
<div id="container">
<h2>Sweet Tooltip - one style is not enough</h2>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Sweet Strong </span>
<div class="image-item"><img src="images/sweet-strong.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-sweet-strong
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-sweet-strong" data-text-tooltip="Howdy, I'm your tooltip :) ">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Mini Slick </span>
<div class="image-item"><img src="images/mini-slick.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-mini-slick
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-mini-slick" data-text-tooltip="Edit Me? ">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Big Grey </span>
<div class="image-item"><img src="images/big-grey.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-big-grey
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-big-grey" data-text-tooltip="This is our tooltip. <br/> How about yours? ">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Nightly </span>
<div class="image-item"><img src="images/nightly.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-nightly
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-nightly" data-text-tooltip="Nightly Nightly">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Shiny Red </span>
<div class="image-item"><img src="images/shiny-red.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-shiny-red
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-shiny-red" data-text-tooltip="This is shiny red">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Soft Blue </span>
<div class="image-item"><img src="images/soft-blue.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-soft-blue
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-soft-blue" data-text-tooltip="Really soft blue">this link</a> to see how this tooltip works
</span>
</div>
</div>
<div class="item-tooltip">
<div class="item">
<span class="top-title">Big Yellow </span>
<div class="image-item"><img src="images/big-yellow.png" /></div>
</div>
<div class="item-information">
<span class="title">Style Name </span>
<span class="information-content">
tooltip-big-yellow
</span>
<span class="title">Example </span>
<span class="information-content">
Hover <a href="#" class="sweet-tooltip" data-style-tooltip="tooltip-big-yellow" data-text-tooltip="This is big yellow">this link</a> to see how this tooltip works
</span>
</div>
</div>
</div>
<script>!window.jQuery && document.write(unescape('%3Cscript src="jquery-1.7.1.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript" src="sweet-tooltip.js"></script>
</body>
</html>