jQWidgets jqxWindow showAnimationDuration属性
jQWidgets 用于在应用程序中输入数据或查看信息。
showAnimationDuration_属性用于设置或获取指定窗口的显示动画持续时间。
语法:
设置showAnimationDuration属性。
$('#jqxWindow').jqxWindow({ showAnimationDuration: 200 });
获取showAnimationDuration属性。
var showAnimationDuration = $('#jqxWindow').jqxWindow('showAnimationDuration');
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>
示例: 下面的例子说明了jqxWindow showAnimationDuration属性在jQWidgets中。在这个例子中,showAnimationDuration被设置为3000。
<!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 () {
("#jqxwindow").jqxWindow({
height: 100,
width: 300,
theme: 'energyblue',
autoOpen: false,
showAnimationDuration: 3000
});
("#jqxbutton").jqxButton({
theme: 'energyblue',
width: 200,
height: 30
});
('#jqxbutton').click(function () {
$("#jqxwindow").jqxWindow('open')
});
});
</script>
</head>
<body>
<center>
<h1 style="color: green;"> GeeksforGeeks </h1>
<h3> jQWidgets jqxWindow showAnimationDuration Property </h3>
<input type="button" style="margin: 10px;"
id="jqxbutton" value="Open the below window" />
<div id='content'>
<div id='jqxwindow'>
<div> Header</div>
<div>
<div>GeeksforGeeks</div>
</div>
</div>
</div>
</center>
</body>
</html>
输出: