diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-08 22:30:02 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-08 22:30:02 +0000 |
commit | 542bbbb4736e921bdfa6ba3b1e7ad2383a73b3c3 (patch) | |
tree | 81b214301ebfa40c8f8d82e53d30903f99c7d6f6 /tests | |
parent | 9d802d0651855b4b2746dd3ca7d42446c9c2f34b (diff) | |
download | jquery-ui-542bbbb4736e921bdfa6ba3b1e7ad2383a73b3c3.tar.gz jquery-ui-542bbbb4736e921bdfa6ba3b1e7ad2383a73b3c3.zip |
moved magnifier to experimental branch
Diffstat (limited to 'tests')
-rw-r--r-- | tests/visual/magnifier.html | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/tests/visual/magnifier.html b/tests/visual/magnifier.html deleted file mode 100644 index 39d8fe96c..000000000 --- a/tests/visual/magnifier.html +++ /dev/null @@ -1,107 +0,0 @@ -<!doctype html> -<html 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> |