aboutsummaryrefslogtreecommitdiffstats
path: root/demos/popup/tooltip.html
blob: 2546b0a39e1bd44b160b4321a41a971a4306a75b (plain)
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
<!DOCTYPE html>
<html>
<head>
	<title>jQuery UI Popup - Tooltip style demo</title>
	<link rel="stylesheet" href="../demos.css" />
	<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css" title="ui-theme" />
	<script src="../../jquery-1.6.4.js"></script>
	<script src="../../ui/jquery.ui.core.js"></script>
	<script src="../../ui/jquery.ui.widget.js"></script>
	<script src="../../ui/jquery.ui.position.js"></script>
	<script src="../../ui/jquery.ui.button.js"></script>
	<script src="../../ui/jquery.ui.popup.js"></script>
	<script>
	$(function() {
		$("#more-info").popup({
			position: {
				of: "#info-link"
			}
		});

		$( "#info-link" ).mouseover( function( event ) {
			$("#more-info").popup( "open" );
		});
	});
	</script>
	<style type="text/css">
		.ui-icon {
			display: inline-block;
		}
		#more-info {
			width: 11em; 
			border: 1px solid gray; 
			border-radius: 5px;
			padding: 1em;
			box-shadow: 3px 3px 5px -1px rgba(0, 0, 0, 0.5);
			background: lightgray; background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
			font-size: 1.3em; outline: none;
			position: absolute;
			z-index: 5000;
			display: none;
		}
 	</style>
</head>
<body>

<div class="demo">
	<div>
		<textarea>More info about me to the right -></textarea> <span id="info-link" class="ui-icon ui-icon-info"></span>
		<div id="more-info">This is some more info and there is even more info on <a href="#">this page</a>.</div>
	</div>
</div>

<div class="demo-description">

<p>A "more info" popup that works on mouseover (tooltip).</p>

</div><!-- End demo-description -->


</body>
</html>