jQWidgets jqxWindow animationType属性
jQWidgets 用于在应用程序中输入数据或查看信息。
animationType属性用于设置或获取指定窗口的关闭和显示动画类型。这个属性有四个可能的值,如下所示。
- ‘none’
- ‘fade’
- ‘slide’
- ‘combined’
语法:
设置animationType属性。
$('#jqxWindow').jqxWindow({ animationType: 'combined' });
获取animationType属性。
var animationType = $('#jqxWindow').jqxWindow('animationType');
Linked Files: 从给定的链接中下载jQWidgets。在HTML文件中,找到下载文件夹中的脚本文件。
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.summer.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxbuttons.js”></script>
示例: 下面的例子说明了jQWidgets中的jqxWindow animationType属性。对于这个例子,animationType被设置为’slide’。
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href=
"jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href=
"jqwidgets/styles/jqx.summer.css" type="text/css" />
<script type="text/javascript"
src="scripts/jquery-1.10.2.min.js"></script>
<script type="text/javascript"
src="jqwidgets/jqxcore.js"></script>
<script type="text/javascript"
src="jqwidgets/jqxwindow.js"></script>
<script type="text/javascript"
src="jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript">
(document).ready(function () {
("#window").jqxWindow({
position: { x: 120, y: 180 },
autoOpen: false,
animationType: 'slide',
draggable: false,
resizable: false,
showCloseButton: false
});
("#Open").click(function () {
("#window").jqxWindow('open');
});
});
</script>
</head>
<body>
<center>
<h1 style="color: green;"> GeeksforGeeks </h1>
<h3>
jQWidgets jqxWindow animationType Property
</h3>
<div id='window'>
<div>Header</div>
<div>GeeksforGeeks</div>
</div>
<input type="button"
value="Animate the Window" id="Open" />
</center>
</body>
</html>
输出: