1. 程式人生 > >jQuery判斷滾動條滾動到頂部和底部

jQuery判斷滾動條滾動到頂部和底部

//底部
$(window).scroll(function(){
        var viewHeight =$(window).height();//可見高度
        var contentHeight =$('.list_box').get(0).scrollHeight;//內容高度
        var scrollHeight =$(window).scrollTop();//滾動高度
        if(contentHeight - viewHeight < scrollHeight) {
            if(status==0){
                status=1;
                ajaxLoad();
            }
        }
    });

//頂部
$(window).scroll(function () {
	    	var top=$(window).scrollTop();  
		if(top<10){
			$('.bar-nav-fixed').css('opacity',1);
		}else{
			$('.bar-nav-fixed').css('opacity',0.5);
		}
	});