{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

jQuery商城常用楼层定位菜单代码

jQuery楼层定位菜单代码是一款商城常用的点击侧边楼层或者鼠标滚轮滚动都能精确定位到页面对应的楼层位置的折叠式楼层菜单网页特效。

 

js代码

 

<script src="js/jquery.min.js"></script>
<script>
$(function(){
	$("li:odd").hide();//li的第偶数个隐藏
	$("#slider ul li.active").next().show();//激活的li下面那条线显示

	$(window).scroll(function(){
		var winHeight = $(window).height();//浏览器可视窗口的高度
		var scrollHeight = $(window).scrollTop();//鼠标滚动的距离
		// if($("#header").height()){   //判断侧边栏什么时候显示
			$("#content .section").each(function(){
				if(winHeight+scrollHeight-$(this).offset().top>winHeight/2){
					$("#slider ul li").removeClass("active").prev(".line").hide();
					$("#slider ul li").eq($(this).index()).addClass("active").next(".line").show();
				}	
			})
		// }
	})
	$("#slider ul li").click(function(){
		
		var current = $("#content .div").eq($(this).index()).offset().top;
		$("html,body").animate({
			"scrollTop":current
		},500);
		$(this).addClass("active").siblings().removeClass("active").siblings(".line").hide();
		$(this).eq($(this).index()).addClass("active").next(".line").show();
	})
})
</script>

资源均来自第三方,谨慎下载,前往第三方网站下载


爱资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:jQuery商城常用楼层定位菜单代码
喜欢 ()分享 (0)