浮动导航
//初始化全局變量GLOBAL.onscrollY.thisy【滾動的高度】
GLOBAL.namespace('onscrollY');
GLOBAL.onscrollY.thisy=0;$(window).resize(function(){GLOBAL.onscrollY.thisy = (document.body.scrollTop||document.documentElement.scrollTop);
});
$(window).scroll(function(){GLOBAL.onscrollY.thisy = (document.body.scrollTop||document.documentElement.scrollTop);
});
//【floatMenu】超過【Gover】時增加類【onFloat】——可用于浮動導航 //實例調用 onFixed('.floatMenu','#Gover','onFloat');function onFixed(floatMenu,Gover,onClass){this.floatMenu=$(floatMenu);this.Gover=$(Gover);this.onClass=onClass;$(window).scroll(function(){if( GLOBAL.onscrollY.thisy >this.Gover.offset().top ){ this.floatMenu.addClass(this.onClass);}else{this.floatMenu.removeClass(this.onClass);}});
}
?
轉載于:https://www.cnblogs.com/katherine-web/p/4921048.html
總結
- 上一篇: 室内定位
- 下一篇: UVALive 3942 Remembe