gpt4 book ai didi

javascript - 仅当屏幕大于 767 时运行脚本

转载 作者:行者123 更新时间:2023-11-28 17:09:25 24 4
gpt4 key购买 nike

我只希望我的脚本在屏幕大于 767 像素时运行,所以我用

包装了我的脚本
if($(window).width() > 767){
}

这是我当前的脚本:

if($(window).width() > 767){
$('header input').click(function() {
$('#holiday-bg').css({
'background-position': 'center center',
'padding-bottom': '39%',
});
});
}

脚本在未包装时可以工作,有什么想法吗?

最佳答案

I only want my script to run if the screen is greater than 767px

您需要在 click 事件后检查窗口大小!

$( 'header input' ).click(function() {
if( $( window ).width() > 767 )
{
$( '#holiday-bg' ).css({
'background-position': 'center center',
'padding-bottom': '39%',
});
}
});

关于javascript - 仅当屏幕大于 767 时运行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47089239/

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