gpt4 book ai didi

jQuery-mobile 标题下的滑动菜单

转载 作者:行者123 更新时间:2023-11-30 23:49:51 27 4
gpt4 key购买 nike

我刚刚进入jQuery mobile,看到了下一个example

是否可以使滑动菜单出现在标题下方? (图中红线处)

enter image description here

最佳答案

通过更改top位置和min-height值覆盖.ui-panel样式

Demo

计算 header 的 .outerHeight() 和 panel 的 .height()

var header = $('[data-role=header]').outerHeight(); 
var panel = $('.ui-panel').height();

为面板指定一个新的min-height,以免导致页面滚动

var panelheight = panel - header;

覆盖面板样式

$('.ui-panel').css({
'top': header,
'min-height': panelheight
});

关于jQuery-mobile 标题下的滑动菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17027951/

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