Fade Effect
说明:淡入淡出效果通过淡化元素来隐藏或显示元素。
fade
例子:
使用淡入淡出效果切换 div。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>fade demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<style>
#toggle {
width: 100px;
height: 100px;
background: #ccc;
}
</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>
<p>Click anywhere to toggle the box.</p>
<div id="toggle"></div>
<script>
$( document ).click(function() {
$( "#toggle" ).toggle( "fade" );
});
</script>
</body>
</html>
演示:
相关用法
- JQuery Mobile Flipswitch theme用法及代码示例
- JQuery Mobile Flipswitch disabled用法及代码示例
- JQuery Mobile Filterable input用法及代码示例
- JQuery Mobile Flipswitch classes用法及代码示例
- JQuery Mobile Flipswitch option用法及代码示例
- JQuery Mobile Filterable disabled用法及代码示例
- JQuery Mobile Filterable filterReveal用法及代码示例
- JQuery Mobile Flipswitch create( event, ui )用法及代码示例
- JQuery Mobile Flipswitch refresh用法及代码示例
- JQuery Mobile Filterable enable用法及代码示例
- JQuery Mobile Flipswitch enhanced用法及代码示例
- JQuery Mobile Filterable filterTheme用法及代码示例
- JQuery UI Fold效果用法及代码示例
- JQuery Mobile Flipswitch disable用法及代码示例
- JQuery Mobile Filterable option用法及代码示例
- JQuery Mobile Flipswitch enable用法及代码示例
- JQuery Mobile Filterable enhanced用法及代码示例
- JQuery Mobile Filterable destroy用法及代码示例
- JQuery Mobile Filterable filterPlaceholder用法及代码示例
- JQuery Mobile Filterable filter( event, ui )用法及代码示例
- JQuery Mobile Filterable classes用法及代码示例
- JQuery Mobile Flipswitch onText用法及代码示例
- JQuery Mobile Filterable refresh用法及代码示例
- JQuery Mobile Filterable disable用法及代码示例
- JQuery Mobile Filterable defaults用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Fade效果。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。