diff options
author | Leif Johansson <leifj@sunet.se> | 2011-11-25 21:18:19 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-11-25 21:18:19 +0100 |
commit | 3909e6d89e01e4cd8777377c63037896bb95aa2f (patch) | |
tree | 59679df287c2bee55087fb5afb8d42e7f93a44fb /src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html | |
parent | e5f94e9be5017f627c1ccd8c6306c5cc2e200432 (diff) |
new jq layout
Diffstat (limited to 'src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html')
-rw-r--r-- | src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html b/src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html new file mode 100644 index 0000000..3acf30f --- /dev/null +++ b/src/main/webapp/jquery-ui-1.9pre/docs/effect-transfer.html @@ -0,0 +1,114 @@ + +<ul class="UIAPIPlugin-toc"> +<li><a href="#overview">Overview</a></li> +<li><a href="#options">Arguments</a></li> +</ul> +<div class="UIAPIPlugin"> + <h1>jQuery UI Transfer Effect</h1> + <div id="overview"> + <h2 class="top-header">Overview</h2> + <div id="overview-main"> + <p>Transfers the outline of an element to another element. Very useful when trying to visualize interaction between two elements.</p> +<p>The transfer element iself has the class name "ui-effects-transfer", and needs to be styled by you, for example by adding a background or border. </p> + </div> + <div id="overview-dependencies"> + <h3>Dependencies</h3> + <ul> +<li>Effects Core</li> +</ul> + </div> + <div id="overview-example"> + <h3>Example</h3> + <div id="overview-example" class="example"> +<ul><li><a href="#demo"><span>Demo</span></a></li><li><a href="#source"><span>View Source</span></a></li></ul> +<p><div id="demo" class="tabs-container" rel="170"> +Clicking on the green element transfers to the other.<br /> +</p> +<pre> +$("div").click(function () { + var i = 1 - $("div").index(this); + $(this).effect("transfer", { to: $("div").eq(i) }, 1000); +}); + +</pre> +<p></div><div id="source" class="tabs-container"> +</p> +<pre><!DOCTYPE html> +<html> +<head> + <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/> + <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> + <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> + <style type="text/css"> + div.green { margin: 0px; width: 100px; height: 80px; background: green; border: 1px solid black; position: relative; } + div.red { margin-top: 10px; width: 50px; height: 30px; background: red; border: 1px solid black; position: relative; } + .ui-effects-transfer { border: 2px solid black; } + +</style> + + <script> + $(document).ready(function() { + +$("div").click(function () { + var i = 1 - $("div").index(this); + $(this).effect("transfer", { to: $("div").eq(i) }, 1000); +}); + + }); + </script> +</head> +<body style="font-size:62.5%;"> + <div class="green"></div> +<div class="red"></div> + +</body> +</html> +</pre> +<p></div> +</p><p></div> + </div> + </div> + <div id="options"> + <h2 class="top-header">Arguments</h2> + <ul class="options-list"> + +<li class="option" id="option-className"> + <div class="option-header"> + <h3 class="option-name"><a href="#option-className">className</a></h3> + <dl> + <dt class="option-type-label">Type:</dt> + <dd class="option-type">String</dd> + + </dl> + </div> + <div class="option-description"> + <p>Optional class name the transfer element will receive.</p> + </div> +</li> + +<li class="option" id="option-to"> + <div class="option-header"> + <h3 class="option-name"><a href="#option-to">to</a></h3> + <dl> + <dt class="option-type-label">Type:</dt> + <dd class="option-type">String</dd> + + </dl> + </div> + <div class="option-description"> + <p>jQuery selector, the element to transfer to.</p> + </div> +</li> + + </ul> + </div> +</div> + +</p><!-- +Pre-expand include size: 4684 bytes +Post-expand include size: 5148 bytes +Template argument size: 2898 bytes +Maximum: 2097152 bytes +--> + +<!-- Saved in parser cache with key jqdocs_docs:pcache:idhash:2627-1!1!0!!en!2 and timestamp 20111125195214 --> |