// 监听滚动条 $(function() { var screenWidth = $(window).width(); // 顶部导航展开(mobile) $('.nav-icon').click(function() { $('.header-module').addClass('show-header-module') }) $('.header-module .close').click(function() { $('.header-module').removeClass('show-header-module') }) // 顶部菜单展开 if (screenWidth < 768) { $('.header-module .menu-parent').each(function() { $(this).click(function() { $(this).siblings().find('.hover-block').slideUp() $(this).find('.hover-block').slideDown() }) }) } // 监听滚动 $(document).scroll(function(){ //获取顶部图片模块的高度 var topBgcHeight = $('.page-top').innerHeight() if (!topBgcHeight) { topBgcHeight = $('.module-first').innerHeight(); } if (!topBgcHeight) { topBgcHeight = $('.bg-banner').innerHeight(); } console.log(topBgcHeight) var topBottomHeight = $('.bottom').offset().top // 手机版导航的变换 // if (screenWidth < 768) { derheight = topBgcHeight - 150 < 0 ? topBgcHeight : topBgcHeight - 150 if (($(window).scrollTop() >= derheight)) { $('.header').addClass('scrollBgc') } else { $('.header').removeClass('scrollBgc') } // } }) })