-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.21 KB
/
index.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tec Demo: JSToolTip</title>
<script type="text/javascript" src="src/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="src/JSToolTip.js"></script>
<style type="text/css">
.toolTipContent{
display: none;
height: 0px;
width: 0px;
}
#tooltipContainer{
border: 1px solid;
width: 0px;
height: 0px;
display: none;
position: absolute;
background-color: white;
}
</style>
</head>
<body>
<div style="bottom: 80px; position:absolute;"><a href="#" class="tooltipLink">Link<div class="toolTipContent">Test</div></a></div>
<div style="left: 50px;top: 80px; position:absolute;"><a href="#" class="tooltipLink">Link3<div class="toolTipContent">Test3</div></a></div>
<a href="#" class="tooltipLink">Link2<div class="toolTipContent">Test2</div></a>
<div id="tooltipContainer">...</div>
</body>
</html>