所以我正在开发一个jQuery移动电话差距应用程序,我注意到每次打开面板时主页面都会自动滚动到顶部。我希望打开面板时页面保持在现场。
经过一堆谷歌搜索后,我发现的唯一一件事是: github 这并不令人鼓舞,而且: page-scrolls-back-to-top-when-the-menu-panel-is-opened-in-jquery-mobile 这对我没用。
以前有人必须解决这个问题吗?我是jQuery的新手,所以我不认为我可以从头开始编程,但在正确的方向上推动会很棒。
这里是我使用的代码:
var panel = '<div data-role="panel" id="left-panel" class="jqm-navmenu-panel" data-position-fixed="true" data-position="left" data-display="push" data-dismissible="true" data-theme="b"><ul data-role="listview"><div id="profile_pic"></div><div id="auth-loggedin" style="display: none"><p class="name_caption"><li><a href="#">Log Out</a></li></ul></div><!-- /leftpanel2 -->';
$(document).one('pagebeforecreate', function () {
$.mobile.pageContainer.prepend(panel).enhanceWithin();
$("#left-panel").panel();
});
这里是html
<div data-role="header" data-position="fixed">
<div id="i">
<div id="header_img_1"><p>Logo 1</p></div>
<div id="header_img_2"><p>Logo 2</p></div>
</div>
<a href="#left-panel" class="jqm-navmenu-link ui-btn ui-btn-icon-notext ui-corner-all ui-icon-bars ui-btn-left" data-icon="bars" data-iconpos="notext">Menu</a>
</div><!-- /header -->
<div data-role="content">
<div id="auth-status">
<div id="auth-loggedout">
<div class="fb-login-button" autologoutlink="true" scope="email,user_checkins">Login with Facebook</div>
</div>
</div>
<div id="auth-loggedin" style="display: none">
Welcome , <span id="auth-displayname"></span>(<a href="#" id="auth-logoutlink">logout</a>)
</div>
</div><!-- /content -->
<div data-role="footer" data-position="fixed" data-theme="b">
<p class="jqm-version"></p>
<p class="footer_text">Content TBD</p>
</div>
</div>
答案 0 :(得分:12)
它就像JQM目前的工作方式,直到版本2,直到滚动物理到位。
目前有一些解决方法。如果面板上有很多项目,那么我建议使用Iscroll 5 http://cubiq.org/iscroll-5,或者如果您正在使用Iscroll插件,则为面板创建一个滚动条。
但是,如果项目不是那么多并且您没有使用Iscroll插件,则下面的方法效果很好。
方法A. 使用CSS使面板内容的内部滚动独立于主内容页面,避免双重滚动。
CSS修复JQM 1.3,1.4 +
.ui-panel.ui-panel-open {
position:fixed;
}
.ui-panel-inner {
position: absolute;
top: 1px;
left: 0;
right: 0;
bottom: 0px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
我在我的小组中有这个
data-position-fixed="true"
仅限1.3,当面板向右或向右滚动并且用户继续滚动时,这是一个停止主页面滚动的小黑客。
.ui-page-active.ui-page-panel {
height: 70%;
}
演示
方法B。由于列表视图在面板打开时滚动到顶部,此方法会记住主列表视图中的最后一个滚动位置,并在面板关闭时激活它。
CSS
::-webkit-scrollbar { width: 0px; }
.ui-panel.ui-panel-open {
position:fixed;
}
.ui-panel-inner {
position: absolute;
width:100%;
top: 0px;
bottom: -17px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
J-query。存储(滚动时列表视图)的位置。
只需注意 storePosition.topCoordinate!== 0 条件就可以了,如果我们在列表视图的顶部是正确的,我们可以避免动画,以节省一些CPU周期。
var storePosition = {
topCoordinate : null
}
$(document).ready(function(){
$( "#mypanel" ).panel({
beforeopen: function( event, ui ) {
storePosition.topCoordinate = $(this).offset().top;
$( ".ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page" ).css("position","fixed");
}
});
$( "#mypanel" ).panel({
close: function( event, ui ) {
$( ".ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page" ).css("position","");
if($.mobile.activePage.attr("id") == "index" && storePosition.topCoordinate !== 0){
$('html, body').animate({
scrollTop: $("#mainlist").position().top += storePosition.topCoordinate - 60
}, 1000);
}
}
});
});
DEMO 1 ,在面板关闭后滚动一秒动画。向下滚动,打开面板,然后关闭面板。
面板关闭前DEMO 2 即时动画滚动。向下滚动,打开面板,然后关闭面板。
<强>更改强>
$( "#mypanel" ).panel({
beforeclose: function( event, ui ) {
$( ".ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page" ).css("position","");
if($.mobile.activePage.attr("id") == "index" && storePosition.topCoordinate !== 0){
$('html, body').animate({
scrollTop: $("#mainlist").position().top += storePosition.topCoordinate - 60
}, 10);
}
}
});
})
2014年11月16日更新。
这里有一个很好的指南,介绍如何实现Native Scrolling,即使您从一个页面导航到下一个页面,也可以保持滚动位置
http://outof.me/native-scrolling-in-jquery-mobilephonegap-applications/
该演示适用于较旧版本的JQM,但与最新的1.4.5
配合使用要使面板独立工作,您需要添加以下css
.ui-panel-inner {
position: absolute;
width: 240px;
max-width: 240px;
top: 0px;
bottom: 0px;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
如果您打算让Panel大于默认width: 17em;
,请调整.ui-panel-inner中的宽度和最大宽度
<强>演示强>
答案 1 :(得分:1)
您是否尝试在函数中放置事件处理程序并使用e.preventDefault();
function (e) {e.preventDefault}
答案 2 :(得分:1)
我最近遇到过这种情况并提出以下解决方案。
1.-当用户单击菜单链接时,运行名为menuOpen的功能
function menuOpen(){
var scrollTop = window.document.body.scrollTop;
//You can replace this with a regular menu open. I use some code that places the same menu panel on every page so that I only have to write it once, but it causes a duplicate ID of "menupanel"- hence the code that will only open #menupanel on the current active page
$.mobile.activePage.find('#menupanel').panel("open");
window.document.body.scrollTop = scrollTop;
}
答案 3 :(得分:-1)
这是我写的一个选项。它需要在面板打开之前存储页面的滚动位置,并在面板关闭时恢复它。我有一些非常长的面板,这对我有用。这是一般性的,所以它连接到所有面板。您可以将选择器更改为仅与某些面板连接。
/*******************************************************************************
* When a panel opens, it makes you lose your place whithin the main page.
* These functions fix that by tracking where you are in the page before the
* panels opens and restoring that position when the panel closes
******************************************************************************/
$(document).on("panelbeforeopen", "[data-role=page]", function(e) {
/* if page we're leaving is a regular page, store the scroll position */
if ($.mobile.activePage.attr("data-role")=="page" && $("body").scrollTop()!=0)
{
window._scrollTop = $("body").scrollTop();
}
});
$(document).on("panelopen", "[data-role=panel]", function(e) {
/* when the panel finishes opening scroll to the top
$.mobile.silentScroll(0);
});
$(document).on("panelclose", "[data-role=panel]", function(e) {
/* when the panel closes, restore the last stored scroll position */
$.mobile.silentScroll(window._scrollTop);
});