jQuery UI API - 转移特效(Transfer Effect)


所属类别

特效(Effects)

用法

描述:把一个元素的轮廓转移到另一个元素。

  1. transfer


参数类型描述
classNameString转移的元素将接收的参数化的 class 名称。
toStringjQuery 选择器,要转移到的元素。

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

转移的元素本身带有 class ui-effects-transfer,其他的样式需要由您来定义,比如添加背景或边框。

实例

在绿色元素上点击把它转移到另一个元素。

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <title>转移特效(Transfer Effect)演示</title>
  6.   <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
  7.   <style>
  8.   div.green {
  9.     width: 100px;
  10.     height: 80px;
  11.     background: green;
  12.     border: 1px solid black;
  13.     position: relative;
  14.   }
  15.   div.red {
  16.     margin-top: 10px;
  17.     width: 50px;
  18.     height: 30px;
  19.     background: red;
  20.     border: 1px solid black;
  21.     position: relative;
  22.   }
  23.   .ui-effects-transfer {
  24.     border: 1px dotted black;
  25.   }
  26.   </style>
  27.   <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  28.   <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
  29. </head>
  30. <body>
  31.  
  32. <div class="green"></div>
  33. <div class="red"></div>
  34.  
  35. <script>
  36. $( "div" ).click(function() {
  37.   var i = 1 - $( "div" ).index( this );
  38.   $( this ).effect( "transfer", { to: $( "div" ).eq( i ) }, 1000 );
  39. });
  40. </script>
  41.  
  42. </body>
  43. </html>