gpt4 book ai didi

jquery - 仅将jquery代码应用于移动设备

转载 作者:行者123 更新时间:2023-12-01 03:59:54 26 4
gpt4 key购买 nike

我正在使用fullcalendar在网站上,并且希望在较小的屏幕尺寸上稍微不同地设计事件样式。如果窗口低于特定大小,如何触发下面的代码?

eventAfterRender: function(event, element, view) {
$(element).css('height','10px');
}

最佳答案

您可以使用$(window).width()作为

    var width = $(window).width();
if (width <= 480) {
//code for mobile devices
} else {
//code for other devices
}

$(window).width() 为您提供设备的宽度(以像素为单位),您可以使用该值来确定移动设备平板电脑desktop 设备,并相应地添加您的设备特定代码。

关于jquery - 仅将jquery代码应用于移动设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49688361/

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