jQuery移动面板swipeClose选项
jQuery Mobile是一种基于网络的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。
在这篇文章中,我们将使用jQuery Mobile面板swipeClose选项来设置是否可以通过在面板上向左或向右滑动来关闭面板。
语法:
用swipeClose选项初始化面板。
$( ".selector" ).panel({
swipeClose: true
});
- 设置swipeClose选项。
$( ".selector" ).panel( "option", "swipeClose", true );
- 获得刷卡关闭选项。
var theme = $( ".selector" ).panel( "option", "swipeClose" );
CDN链接:首先,添加你的项目需要的jQuery Mobile脚本。
<link rel=”stylesheet” href=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css”>
<script src=”//code.jquery.com/jquery-3.2.1.min.js”></script>
<script src=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js”></script>
例子:这个例子描述了jQuery Mobile面板的swipeClose选项。在下面的例子中,通过在面板上向左滑动来关闭面板。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1">
<link rel="stylesheet" href=
"//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css">
<script src=
"//code.jquery.com/jquery-3.2.1.min.js">
</script>
<script src=
"//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js">
</script>
</head>
<body>
<center>
<div data-role="page">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>jQuery Mobile panel swipeClose Option</h3>
<div role="main">
<a href="#GFG" data-role="button" data-inline="true"
data-icon="bars">GeeksforGeeks</a>
</div>
<div data-role="panel" id="GFG" data-theme="b">
<div class="panel-content">
<h3>GeeksforGeeks</h3>
<p>It is a computer science portal.</p>
<a href="#demo-links" data-rel="close"
data-role="button" data-theme="c"
data-icon="delete"
data-inline="true">Close this panel</a>
</div>
</div>
<input type="button" id="Button"
value="Value of the swipeClose option">
<div id="log"></div>
</div>
</center>
<script>
(document).ready(function () {
("#GFG").panel({
swipeClose: true
});
("#GFG").panel("option", "swipeClose", true);
("#Button").on('click', function () {
var a = ("#GFG").panel("option", "swipeClose");
("#log").html(a);
});
});
</script>
</body>
</html>
输出:

jQuery移动面板swipeClose选项
极客教程