$(function () { // 防止设计器里无法选择内容 if( isFrontEnv()){ $('.main>div:nth-child(2)').css({ position: "fixed", left:0, top: "100%", bottom: 0, right: 0 }); }; // 在第一个 容器上 添加鼠标事件 $('.main>div:first-child').mousewheel(function (event) { if (event.deltaY < 0) { // $(this).hide(); $(this).find('#w_grid-1591751379970').hide().end().find('#w_grid-1591842666459').addClass('activeNav'); // 自身隐藏 $('.main>div:nth-child(2)').addClass('active'); // 第二屏显示 } } ); // 在第二个容器上添加鼠标事件 $('.main>div:nth-child(2)').mousewheel(function (event) { if (event.deltaY > 0 && $('.main>div:nth-child(2)').scrollTop() == 0) { $(this).removeClass('active'); // 自身定位 $('.main>div:first-child').find('#w_grid-1591751379970').show().siblings().removeClass('activeNav'); } }); });