热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

滚动到一定高度就固定(fixed)导航栏

2019独角兽企业重金招聘Python工程师标准实战中运用到,mark下来定位导航栏$(document).scroll(function(){var$topp

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

实战中运用到,mark下来

//定位导航栏$(document).scroll(function(){var $top = parseInt($(window).scrollTop());if($top>=139){$(".stepBars").css({"position":"fixed","top":0,"z-index":5});}else{$(".stepBars").css({"position":"absolute","top":135,"z-index":5});}});

给导航栏的锚点功能添加动画效果

$(".stepBars a").each(function(index){ //遍历导航栏的a标签$(this).bind("click",function(){var $href = $(this).attr("href"); //所得href即跳转到目的元素的选择器var $pos = $($href).offset().top; //这里要换算的话记得用number()转换成数字$("html,body").animate({ scrollTop:$pos}, 40); });});

滚动到相应的地方相应的锚点高亮

//滚动到指定位置&#xff0c;对应锚点自动高亮$(window).scroll(function(){var $wst &#61; $(window).scrollTop();var $cts_top &#61; $("#cho_cts").offset().top-80;var $addr_top &#61; $("#cho_serAddr").offset().top-80;var $time_top &#61; $("#forSf_info").offset().top-80;var $sub_top &#61; $("#xiadan_submit_box").offset().top-80;if($cts_top<&#61;$wst){$(".stepBars a").removeClass("on").eq(0).addClass("on");}if($addr_top<&#61;$wst){$(".stepBars a").removeClass("on").eq(1).addClass("on");}if($time_top<&#61;$wst){$(".stepBars a").removeClass("on").eq(2).addClass("on");}if($sub_top<&#61;$wst){$(".stepBars a").removeClass("on").eq(3).addClass("on");}});

逐个逐个来显得有点笨拙&#xff0c;有空研究下怎样遍历执行


转:https://my.oschina.net/daladida/blog/728142



推荐阅读
author-avatar
烂在心底
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有