.scroll off更改屏幕大小

时间:2015-07-16 16:49:07

标签: javascript jquery

如果屏幕尺寸大于或等于992px,如何使用jQuery滚动调整图像大小?





我尝试了以下代码,但它没有用。




  jQuery(function(){
 / * Logo Resize * /
 jQuery(窗口).resize(function(){
 if(jQuery(this).width()< 992){
 jQuery('#logo-img img')。attr('src',' imgs / min_logo.png');
}
 if(jQuery(this).width()> = 992){
 / * Logo Scroll * /
 jQuery(window ).scroll(function(){
 if(jQuery(this).scrollTop()> = 250){
 jQuery('#logo-img img')。attr('src',' imgs / min_logo.png');
}
 if(jQuery(this).scrollTop()< 250){
 jQuery('#logo-img img')。attr(' src','imgs / logo.png');
}
});
}
});
});
  



0 个答案:

没有答案