zl程序教程

您现在的位置是:首页 >  其它

当前栏目

导航条悬浮效果

效果 悬浮 导航条
2023-09-14 08:58:27 时间

当浏览器滚动条向下滚动,自动悬浮导航栏在最上面。

效果:

1、 css代码

	.ui-jqgrid-htable{
		z-index: 999;
	}

2、 jquery代码


$(function(){

       var offset_pin = $(".ui-jqgrid-htable").offset();//pin的偏移

        $(window).scroll(function(){//滚动页面 
	        
        var scroH = $(this).scrollTop(); //浏览器偏移
	        
	if(scroH > offset_pin.top){
	        $(".ui-jqgrid-htable").css({ top: "0", position: "fixed"});
	}else{
	        $(".ui-jqgrid-htable").css({ top: "", position: ""});
	}

});

3、 html代码

<div class="ui-jqgrid-htable">
 导航
</div>

@落雨
http://ae6623.cn