jQuery Tutorial
jQuery UI
jQuery References
jQuery Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
jQuery Transfer Effect
Description:
The Transfer effect can be used with effect() method. This Transfers the outline of an element to another element. Very useful when trying to visualize interaction between two elements.
Syntax:
Here is the simple syntax to use this effect:
selector.effect( "transfer", {arguments}, speed );
|
Parameters:
Here is the description of all the arguments:
className: Optional class name the transfer element will receive.
to: jQuery selector, the element to transfer to.
Example:
Following is a simple example a simple showing the usage of this effect:
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript"
src="/jquery/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("div").click(function () {
var i = 1 - $("div").index(this);
$(this).effect("transfer",{ to: $("div").eq(i) }, 500);
});
});
</script>
<style>
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; }
/* Following is required to show border while transferring.*/
.ui-effects-transfer { border: 2px solid black; }
</style>
</head>
<body>
<p>Click any of the squares:</p>
<div class="green"></div>
<div class="red"></div>
</body>
</html>
|
To understand it in better way you can Try it yourself.
|
|
|