gpt4 book ai didi

jquery - jquery mobile 中的滑动面板 [数据 Angular 色 ="panel"]

转载 作者:行者123 更新时间:2023-11-28 13:15:10 25 4
gpt4 key购买 nike

我使用 jquery mobile 创建了滑动面板,我想减小面板的宽度,我不知道该怎么做?!我在谷歌上搜索了很多,但没有找到正确的
我的代码:

<div data-role="page" id="home" class="jqm-demos ui-responsive-panel" data-title="Home">
<div data-role="panel" id="myPanel" data-theme="a" data-dismissible="true" class="ui-responsive-panel">
<div id="menu">
<ul>
<li class="active"><a href="#home" class="contentLink">Home </a></li>
<li><a href="#home" class="contentLink">My profile </a></li>
<li><a href="#home" class="contentLink">My Score </a></li>
<li><a href="#home" class="contentLink">Ask Questions </a></li>
</ul>
</div>
</div>
<div data-role="header" data-position="fixed">
<h1>Home</h1>
<a href="#myPanel" data-role="button" data-display="reveal" data-position="right" data-icon="gear" data-reveal="reveal" data-dismissible="true">Menu</a>
</div>

最佳答案

尝试使用 CSS:

.ui-responsive-panel{
width: 200px; /* <---------your choice of px*/
}

使用 jQuery:

$(function(){
$('#myPanel').css('width','200px');
});

或者这个:

   $('#myPanel').width(200);

您的评论:我想减小面板的宽度大小试试下面的一个:

$(function(){
$('#myPanel').css('width',$(this).width()-200+'px');
});

关于jquery - jquery mobile 中的滑动面板 [数据 Angular 色 ="panel"],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15110191/

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