gpt4 book ai didi

jquery - 使 Mobiscroll 高度和宽度响应

转载 作者:太空宇宙 更新时间:2023-11-04 00:10:43 26 4
gpt4 key购买 nike

对于 Mobiscroll,高度和宽度是在原始 JQuery 实现中设置的。当屏幕尺寸改变时,我目前使用 CSS @media 查询更改宽度和高度。我想知道原始 JQuery 实现是否有办法。

我的 JQuery

$('ul.scroll-list select').scroller({
preset: 'select',
theme: 'ios',
display: 'inline',
mode: 'scroller',
inputClass: 'i-txt',
width: 50,
height:50,
onShow: function (html, instance) {
$("input[id$='_dummy'], .scroll-list label").hide();
}
});

我的 CSS

@media only screen and (max-width: 959px) {
.ios .dww li {font-size:0.7em;}
.dww.dwrc {height:150px !important;}
}

想知道是否有更简洁的方法,通过主题或一些 JQuery 实现。

谢谢!

最佳答案

你可以通过 .width() 获取屏幕宽度来做到这一点

$(selector).width(); //get the width you want 
$(window).width(); // returns width of browser viewport
$(document).width(); // returns width of HTML document

关于jquery - 使 Mobiscroll 高度和宽度响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13170476/

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