您好,欢迎访问一九零五行业门户网

jQuery实现的粘性滚动导航栏效果

粘性滚动是当导航在滚动过程中会占粘于浏览器上,达到方便网站页面浏览的效果,也是一种用户体验,本文主要介绍了jquery实现的粘性滚动导航栏效果,涉及jquery插件smint的相关使用技巧,并附带完整实例源码供读者下载参考,需要的朋友可以参考下,希望能帮助到大家。
下面我们看一下是怎么实现的:
jquery的 smint插件,也是一个导航菜单固定插件。当页滚动时,导航菜单会固定在顶部;当点击菜单时,页面会平滑的滚动到对应的区域。
兼容性
由于 smint 使用了 position: fixed,所以它不兼容 ie6。适用浏览器:ie8、360、firefox、chrome、safari、opera、傲游、搜狗、世界之窗.
引入文件
<link href="css/demo.css" rel="external nofollow" rel="stylesheet" type="text/css"> <script src="js/jquery.min.js"></script> <script src="js/jquery.smint.js"></script>
html
<body onload="settimeout(function() { window.scrollto(0, 1) }, 100);"> <p class="wrap">   <p class="submenu">     <p class="inner">       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="stop" class="subnavbtn">home</a>       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s1" class="subnavbtn">section 1</a>       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s2" class="subnavbtn">section 2</a>       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s3" class="subnavbtn">section 3</a>       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s4" class="subnavbtn">section 4</a>       <a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="s5" class="subnavbtn end">section 5</a>     </p>   </p>   <p class="section stop">     <p class="inner"></p><br class="clear">   </p>   <p class="section s1">     <p class="inner"><h1>section 1</h1></p>   </p>   <p class="section s2">     <p class="inner"><h1>section 2</h1></p>   </p>   <p class="section s3">     <p class="inner"><h1>section 3</h1></p>   </p>   <p class="section s4">     <p class="inner"><h1>section 4</h1></p>   </p>   <p class="section s5">     <p class="inner"><h1>section 5</h1></p>   </p> </p> </body>
注意:菜单的外部容器(如上例的 submenu)需要设置样式 position:absolute,并且每个菜单的 a 标签需要设置 id,id 的值与下面对应区域的 class 的值一致。
javascript
$(function() {   $('.submenu').smint({     scrollspeed : 1000   }); });
相关推荐:
jquery实现导航栏头部菜单项点击后变换颜色的方法实例详解
javascript实现个性导航栏特效
javascript实现精美个性导航栏筋斗云效果的示例代码
以上就是jquery实现的粘性滚动导航栏效果的详细内容。
其它类似信息

推荐信息