gpt4 book ai didi

javascript - 持久/外部 JQuery 移动面板

转载 作者:行者123 更新时间:2023-12-01 01:47:09 25 4
gpt4 key购买 nike

在 JQuery Mobile 1.4 中,面板可以是外部的、固定的和响应式的,这促使我尝试使用面板创建持久侧边栏。除了每次页面转换时面板都会关闭之外,一切似乎都运行良好。当新页面显示时,面板将再次打开。

jsfiddle:http://jsfiddle.net/egntp/

我希望面板在页面转换期间保留在页面上,类似于持久工具栏的工作方式。

有什么想法吗?我查看了面板的 beforeClose() 事件 ( http://api.jquerymobile.com/panel/#event-beforeclose ),试图阻止它关闭,但我不知道如何继续。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-rc.1.min.css" />
<style type="text/css">
.ui-panel-dismiss{display:none;}
#p1, #p2{margin-left:17em;}
</style>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
$(function(){$("#sidebar").panel();});
$(document).on("pageshow", ":jqmData(role=page)", function() {
$("#sidebar").panel("open");
});
</script>
<script src="http://code.jquery.com/mobile/1.4.0-rc.1/jquery.mobile-1.4.0-rc.1.min.js"></script>
</head>
<body>
<div data-role="panel" data-animate="false" data-position-fixed="true" data-swipe-close="false" id="sidebar">
<h1>sidebar</h1>
<a href="#p1">Page 1</a><br />
<a href="#p2">Page 2</a>
</div>
<div id="p1" data-role="page">
My page 1
</div>
<div id="p2" data-role="page">
My page 2
</div>
</body>
</html>

最佳答案

我正在尝试做类似的事情,到处都取得了一些成功......尝试从这个开始,看看你能走多远......

.ui-panel-closed {
width: 17em !important;
visibility: visible !important;
}

这可能起作用的原因是,当您打开或关闭面板时,所有 jQuery Mobile 所做的都是修改面板 div 的 css 类。他们做的一件事是切换几个 css 类,ui-panel-openui-panel-close

上面的CSS确保即使他们将ui-panel-close类添加到面板div中,面板仍然保持打开状态。

关于javascript - 持久/外部 JQuery 移动面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20387969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com