aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/tooltip/animations.html
blob: f0deac1d329ba1c2abe32a9b6b50484728f31195 (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
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
	<title>Tooltip Visual Test: Default</title>
	<link rel="stylesheet" href="../visual.css" type="text/css" />
	<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
	<script type="text/javascript" src="../../../jquery-1.5.1.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.position.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.button.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.ui.tooltip.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.effects.core.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.effects.blind.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.effects.bounce.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.effects.drop.js"></script>
	<script type="text/javascript" src="../../../ui/jquery.effects.explode.js"></script>
	<!--
	<script type="text/javascript" src="http://jqueryui.com/themeroller/themeswitchertool/"></script>
	-->
	<script type="text/javascript">
	$(function() {
		var animations = [{}, {
			show: {
				effect: "slideDown"
			},
			hide: {
				effect: "slideUp"
			}
		}, {
			show: {
				effect: "explode"
			},
			hide: {
				effect: "explode"
			}
		}, {
			show: {
				effect: "bounce"
			},
			hide: {
				effect: "blind"
			}
		},
		{
			show: {
				effect: "drop",
				direction: "right"
			},
			hide: {
				effect: "drop",
				direction: "right"
			}
		}];
		$.each(animations, function(index, animation) {
			var text = JSON.stringify(animation);
			$("<span></span>").attr("title", text).text(text).tooltip({
				show: animation.show,
				hide: animation.hide
			}).wrap("<li></li>").parent().appendTo("ul");
		});
	});
	</script>
</head>
<body>

<div style="width:300px">
	<ul class="ui-widget ui-widget-header">
	</ul>
</div>
</body>
</html>