jQuery UI API - Transfer Effect
Category
Usage
Description: Transfers the outline of an element to another element.
Parameter | Type | Description |
---|---|---|
className | String | The parameterized class name the transfer element will receive. |
to | String | A jQuery selector for the element to transfer to. |
This is particularly useful when trying to visualize interactions between two elements.
The transferring element itself has the class ui-effects-transfer
, and any additional styles such as background or borders need to be defined by you.
Example
Click on the green element to transfer it to another element.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Transfer Effect Demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<style>
div.green {
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: 1px dotted black;
}
</style>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>
<div class="green"></div>
<div class="red"></div>
<script>
$( "div" ).click(function() {
var i = 1 - $( "div" ).index( this );
$( this ).effect( "transfer", { to: $( "div" ).eq( i ) }, 1000 );
});
</script>
</body>
</html>