jQuery.effects.define( name [, mode ], effect )
返回:Function
添加的版本:1.12
说明:定义效果。
-
jQuery.effects.define( name [, mode ], effect )
定义与
、 .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>
演示:
相关用法
- JQuery jQuery.escapeSelector()用法及代码示例
- JQuery jQuery.each()用法及代码示例
- JQuery jQuery.extend()用法及代码示例
- JQuery jQuery.error()用法及代码示例
- JQuery jQuery.inArray()用法及代码示例
- JQuery jQuery.when()用法及代码示例
- JQuery Mobile jQuery.mobile.path.get()用法及代码示例
- JQuery jQuery.grep()用法及代码示例
- JQuery Mobile jQuery.mobile.navigate()用法及代码示例
- JQuery Mobile jQuery.mobile.path.isRelativeUrl()用法及代码示例
- JQuery jQuery.dequeue()用法及代码示例
- JQuery Mobile jQuery.mobile.silentScroll()用法及代码示例
- JQuery jQuery.cssNumber用法及代码示例
- JQuery jQuery.map()用法及代码示例
- JQuery jQuery.readyException()用法及代码示例
- JQuery jQuery.parseJSON()用法及代码示例
- JQuery jQuery.contains()用法及代码示例
- JQuery Mobile jQuery.mobile.path.makePathAbsolute()用法及代码示例
- JQuery jQuery.unique()用法及代码示例
- JQuery jQuery.getJSON()用法及代码示例
- JQuery jQuery.proxy()用法及代码示例
- JQuery jQuery.ajaxSetup()用法及代码示例
- JQuery jQuery.type()用法及代码示例
- JQuery jQuery.cssHooks用法及代码示例
- JQuery jQuery.parseXML()用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 jQuery.effects.define()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。