-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
40 lines (32 loc) · 1.09 KB
/
example.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Hoverbox</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
html {
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 80%;
margin: 50px 100px
}
#tooltip {
padding: 5px 10px;
background: #cad7e0;
border: 1px solid #b2bdc3;
opacity: 0.90;
}
</style>
</head>
<body>
<p><span title="Morbi in sem quis dui placerat ornare.">First example</span></p>
<p><span title="Hello, <strong>World</strong>!">Some basic formatting</span></p>
<p><span>No tooltip here</span></p>
<p><a href="http://koteako.com/hoverbox/" title="Lorem ipsum dolor sit amet.">jQuery Hoverbox</a></p>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.hoverbox.min.js"></script>
<script type="text/javascript">$(function(){
$('span, a').hoverbox();
});
</script>
</body>
</html>