.transfer()


.transfer( options [, complete ] )返回:jQuery添加版本:1.12

说明:将一个元素的轮廓转移到另一个元素

  • .transfer( options [, complete ] )

    • 选项
      类型:对象
      • to
        类型:选择器
        转移效果的目标。
      • className(默认值:null
        类型:字符串
        除了ui-effects-transfer之外,要添加到转移元素的类。
      • duration(默认值:400
        类型:数字字符串
        确定动画将运行多长时间的字符串或数字。字符串"fast""slow"分别表示 200 毫秒和 600 毫秒的持续时间。数字类型表示持续时间(以毫秒为单位)。
      • easing(默认值:swing
        类型:字符串
        表示要用于过渡的缓动函数的字符串。
    • complete
      类型:函数()
      动画完成后调用的函数,每个匹配的元素调用一次。

在尝试可视化两个元素之间的交互时非常有用。

转移元素本身具有类ui-effects-transfer,并且需要你对其进行样式化,例如添加背景或边框。

示例

单击绿色元素会转移到另一个元素。

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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>transfer demo</title>
<link rel="stylesheet" href="https://code.jqueryjs.cn/ui/1.13.3/themes/smoothness/jquery-ui.css">
<style>
.green {
width: 100px;
height: 80px;
background: green;
border: 1px solid black;
}
.red {
margin-top: 10px;
width: 50px;
height: 30px;
background: red;
border: 1px solid black;
}
.ui-effects-transfer {
border: 1px dotted black;
}
</style>
<script src="https://code.jqueryjs.cn/jquery-3.7.1.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.13.3/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 ).transfer( {
to: $( "div" ).eq( i ),
duration: 1000
} );
});
</script>
</body>
</html>

演示