aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/magnifier.html
blob: 70ca267998fb31e848320a2ec0343edcfd53bb97 (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
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
<?xml version="1.0" encoding="UTF-8"?>
<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Magnifier Demo</title>

<style type="text/css">

body,html {
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-size: 12px;
}

div.playground {
	height: 150px;
}

#example1 img,
#example2 img,
#example3 img,
#example4 img {
	float:left;
}

</style>
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.magnifier.js"></script>


</head>
<body>

<h2>1. Default, no options</h2>
<div class="playground">
	<div id='example1' class="ui-wrapper example" style="width: 580px; padding: 20px;">
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
	</div>
</div>

<h2>2. Magnification set to 1.5 (default: 2)</h2>
<div class="playground">
	<div id='example2' class="ui-wrapper example" style="width: 580px; padding: 20px;">
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
	</div>
</div>

<h2>3. Advanced example: overlap: true, zIndex: 10, opacity: { min: 0.6, max: 1 }, baseline: -1</h2>
<div class="playground">
	<div id='example3' class="ui-wrapper example" style="width: 580px; padding: 20px;">
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
	</div>
</div>

<h2>4. Advanced example: The direction doesn't have to be horizontal!</h2>
<div class="playground">
	<div id='example4' class="ui-wrapper example" style="width: 150px; padding: 20px; height: 150px;">
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
		<img src="../images/clock.png" width="48" alt="" />
	</div>
</div>

<script type="text/javascript">
if(!window.console) {
 window.console = {
 	log: function() {
 		alert(arguments[0]);	
 	}	
 }	
}

$(window).bind("load",function(){

	$('#example1').magnifier();
	$('#example2').magnifier({ magnification: 1.5 });
	$('#example3').magnifier({ magnification: 1.5, overlap: true, zIndex: 10, opacity: { min: 0.6, max: 1 }, baseline: -1  });
	$('#example4').magnifier({ magnification: 1.5, overlap: true, zIndex: 10, opacity: { min: 0.6, max: 1 }, distance: 30  });

});
</script>
</body>
</html>