.transfer()

.transfer()

.transfer( options [, complete ] )Returns: jQueryversion added: 1.12

Description: Transfers the outline of an element to another element

  • .transfer( options [, complete ] )

    • options
      Type: Object
      • to
        Type: Selector
        The target of the transfer effect.
      • className (default: null)
        Type: String
        A class to add to the transfer element, in addition to ui-effects-transfer.
      • duration (default: 400)
        Type: Number or String
        A string or number determining how long the animation will run. The strings "fast" and "slow" can be supplied to indicate durations of 200 and 600 milliseconds, respectively. The number type indicates the duration in milliseconds.
      • easing (default: swing)
        Type: String
        A string indicating which easing function to use for the transition.
    • complete
      Type: Function()
      A function to call once the animation is complete, called once per matched element.

Very useful when trying to visualize interaction between two elements.

The transfer element itself has the class ui-effects-transfer, and needs to be styled by you, for example by adding a background or border.

Example:

Clicking on the green element transfers to the other.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>transfer demo</title>
  <link rel="stylesheet" href="/doc_/-code-jquery-com-ui-1-12-0-themes-smoothness-jquery-ui-css.html?lang=en">
  <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="//code.jquery.com/jquery-1.12.4.js" rel="external nofollow" ></script>
  <script src="//code.jquery.com/ui/1.12.0/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 ).transfer( {
    to: $( "div" ).eq( i ),
    duration: 1000
  } );
});
</script>
 
</body>
</html>

Demo:

© The jQuery Foundation and other contributors
Licensed under the MIT License.
https://api.jqueryui.com/transfer

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部