当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery UI jQuery.effects.define()用法及代码示例


jQuery.effects.define( name [, mode ], effect )

返回:Function

添加的版本:1.12

说明:定义效果。

  • jQuery.effects.define( name [, mode ], effect )
    • name
      类型:String
      要创建的效果的名称。
    • mode
      类型:String
      效果的默认模式。可能的值为 "show""hide""toggle"
    • effect
      类型:Function( Object options, Function done() )
      定义效果逻辑。 options 参数包含 durationmode 属性,以及任何 effect-specific 选项。

定义与 .effect() .show() .hide() .toggle() 一起使用的新效果。使用 this 作为单个 DOM 元素调用效果方法。 done 参数必须在动画完成时调用。

jQuery.effects.define() 将新效果存储在 jQuery.effects.effect[ name ] 中并返回作为 effect 参数提供的函数。

例子:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery.effects.define demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <style>
  .elem {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #3b679e;
  }
  </style>
  <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
 
Click anywhere!
<div class="elem"></div>
 
<script>
$.effects.define( "fade", "toggle", function( options, done ) {
  var show = options.mode === "show";
 
  $( this )
    .css( "opacity", show ? 0 : 1 )
    .animate( {
      opacity: show ? 1 : 0
    }, {
      queue: false,
      duration: options.duration,
      easing: options.easing,
      complete: done
    } );
} );
 
$( document ).on( "click", function() {
  $( ".elem" ).toggle( "fade" );
} );
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 jQuery.effects.define()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。