jQuery UI API - 轉(zhuǎn)移特效(Transfer Effect)

所屬類別

特效(Effects)

用法

描述:把一個元素的輪廓轉(zhuǎn)移到另一個元素。

transfer

參數(shù) 類型 描述
className String 轉(zhuǎn)移的元素將接收的參數(shù)化的 class 名稱。
to String jQuery 選擇器,要轉(zhuǎn)移到的元素。

當(dāng)嘗試兩個元素之間的可視化交互時非常有用。

轉(zhuǎn)移的元素本身帶有 class ui-effects-transfer,其他的樣式需要由您來定義,比如添加背景或邊框。

實(shí)例

在綠色元素上點(diǎn)擊把它轉(zhuǎn)移到另一個元素。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>轉(zhuǎn)移特效(Transfer Effect)演示</title>
  <link rel="stylesheet"  rel="external nofollow" target="_blank" >
  <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="http://code.jquery.com/jquery-1.10.2.js" rel="external nofollow" ></script>
  <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js" rel="external nofollow" ></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>

查看演示