>  기사  >  웹 프론트엔드  >  Node.js는 스크롤 막대를 구현하여 페이지 하단으로 스크롤하고 loading_javascript 기술을 계속합니다.

Node.js는 스크롤 막대를 구현하여 페이지 하단으로 스크롤하고 loading_javascript 기술을 계속합니다.

WBOY
WBOY원래의
2016-05-16 15:24:381682검색

이 예제는 매우 간단하다고 해야 하며 jQuery 메서드를 사용하여 직접 처리할 수도 있습니다. 하지만 이 기사의 맨 아래 레이어는 기본 js를 사용하여 처리됩니다. 몇 가지 작은 지식 포인트가 발생하면 이를 분석할 수 있으며 가치가 있을 것입니다.

원칙은 매우 간단합니다. 브라우저가 스크롤 이벤트를 트리거할 때마다 브라우저 하단으로 스크롤되었는지 여부를 확인하고 창에 스크롤 이벤트를 추가하기만 하면 됩니다. 맨 아래에 도달하면 새 데이터를 로드합니다. 핵심은 스크롤 막대가 브라우저 하단까지 스크롤되었는지 여부를 계산하는 것입니다. 알고리즘은 다음과 같습니다

스크롤 막대 롤업 높이 창 높이> 문서의 전체 높이는 50/*스크롤 응답 영역의 높이를 50px로 설정합니다*/; 판단이 true이면 스크롤 막대가 아래쪽으로 스크롤되었음을 나타냅니다.


  <style type="text/css">
  html,body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td{
   margin: 0;
   padding:0;
  }
  *{
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
  }
   .waterfllow-loading{
   z-index: 2000;
   display:none;
  }
  .waterfllow-loading.active{
   display:block;
  }
  .waterfllow-loading img.loading-progress{
   position: fixed;
   /*设置等待条水平居于窗口正中*/
   margin-left: auto;
   margin-right: auto;
   left: 0;
   right: 0;

   /*不能设置margin-top:auto和margin-bottom:auto否则IE下bottom就不顶用了*/
   bottom: 30px;
  } 
  </style>
  <div class="waterfllow-loading">
   <img class="loading-progress" src="busy.gif">
  </div>
 <script type="text/javascript">
 //图片查询中正对浏览器主页面滚动事件处理(瀑布流)。只能使用window方式绑定,使用document方式不起作用
 $(window).on('scroll',function(){
  if(scrollTop() + windowHeight() >= (documentHeight() - 50/*滚动响应区域高度取50px*/)){
   waterallowData();
  }
 });

 function waterallowData(){
  $('.waterfllow-loading').addClass('active');
  
  /*$.ajax({
   url:url,
   type:"post",
   data: params,
   success:function(data,textStatus,jQXHR){
    //添加数据
    ...

    //隐藏加载条
    $('.waterfllow-loading.active').removeClass('active');
   }
  });*/
 }

페이지 상단 롤업 높이 기능 얻기

 //获取页面顶部被卷起来的高度
 function scrollTop(){
  return Math.max(
   //chrome
   document.body.scrollTop,
   //firefox/IE
   document.documentElement.scrollTop);
 }

Chrome 브라우저와 Firefox/IE는 스크롤 막대가 본문에 속하는지 html에 속하는지를 서로 다르게 이해하므로 처리 방식이 다릅니다.

페이지 문서의 전체 높이를 가져옵니다

 //获取页面文档的总高度
 function documentHeight(){
  //现代浏览器(IE9+和其他浏览器)和IE8的document.body.scrollHeight和document.documentElement.scrollHeight都可以
  return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight);
 }

이 알고리즘은 jQuery의 문서 높이 계산 방법과 일치합니다.

페이지 브라우저 뷰포트 높이 가져오기

 function windowHeight(){
  return (document.compatMode == "CSS1Compat")&#63;
  document.documentElement.clientHeight:
  document.body.clientHeight;
 }

여기서 설명해야 할 것은 document.compatMode입니다. 매우 이상하고 일반적으로 접해본 적이 없는 것 같습니다.

Document.compatMode에는 "BackCompat" 및 "CSS1Compat"이라는 두 가지 값이 있습니다. 공식적인 설명은 BackCompat: 표준 호환성 모드가 꺼져 있습니다. CSS1Compat: 표준 호환성 모드가 켜져 있습니다.
IE의 박스 모델 렌더링은 표준 모드와 Quirks 모드 사이에서 매우 다릅니다. 표준 모드의 박스 모델 해석은 다른 표준 브라우저의 해석과 동일하지만 Doctype을 선언하지 않은 IE에서는 큰 차이가 있습니다. 기본값은 Quirks 모드입니다.
두 모드의 차이점을 설명하는 예를 들어보세요.

document.compatMode가 "BackCompat"과 같을 때 브라우저 클라이언트 영역 너비는 document.body.clientWidth입니다.

document.compatMode가 CSS1Compat과 같을 때 브라우저 클라이언트 영역 너비는 document.documentElement.clientWidth입니다.

다른 유사한 속성도 있습니다. 여기서는 자세히 설명하지 않겠지만 두 가지 모드로 인해 IE 렌더링의 초석이 변경될 것이라고 예상할 수 있습니다. 건설된 건물이 얼마나 다를지 상상할 수 있습니다.

그러니 각 페이지마다 Doctype을 선언해 주는 것은 좋은 습관일 뿐만 아니라 꼭 필요한 과정이기도 합니다. Quirks 모드는 휴지통에 들어갈 수 있습니다.

좋습니다. 간단한 예가 포함된 전체 코드는 다음과 같습니다(백그라운드에서 데이터 새로 고침 없음, 대기 표시줄만 있음)

<!DOCTYPE html>
<html lang="ch-cn">
 <head>
  <meta charset="utf-8">
  <script type="text/javascript" src='jquery-1.9.1.js'></script>
  <style type="text/css">
  html,body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td{
   margin: 0;
   padding:0;
  }
  *{
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
  }
   .waterfllow-loading{
   z-index: 2000;
   display:none;
  }
  .waterfllow-loading.active{
   display:block;
  }
  .waterfllow-loading img.loading-progress{
   position: fixed;
   /*设置等待条水平居于窗口正中*/
   margin-left: auto;
   margin-right: auto;
   left: 0;
   right: 0;

   /*不能设置margin-top:auto和margin-bottom:auto否则IE下bottom就不顶用了*/
   bottom: 30px;
  } 
  </style>
 </head>
 <body style="background:#ff0;height:1000px;">
  <div class="waterfllow-loading">
   <img class="loading-progress" src="busy.gif">
  </div>
 </body>
 <script type="text/javascript">

 //获取页面顶部被卷起来的高度
 function scrollTop(){
  return Math.max(
   //chrome
   document.body.scrollTop,
   //firefox/IE
   document.documentElement.scrollTop);
 }
 //获取页面文档的总高度
 function documentHeight(){
  //现代浏览器(IE9+和其他浏览器)和IE8的document.body.scrollHeight和document.documentElement.scrollHeight都可以
  return Math.max(document.body.scrollHeight,document.documentElement.scrollHeight);
 }
 //获取页面浏览器视口的高度
 function windowHeight(){
  //document.compatMode有两个取值。BackCompat:标准兼容模式关闭。CSS1Compat:标准兼容模式开启。
  return (document.compatMode == "CSS1Compat")&#63;
  document.documentElement.clientHeight:
  document.body.clientHeight;
 }
 </script>
 <script type="text/javascript">
 //图片查询中正对浏览器主页面滚动事件处理(瀑布流)。只能使用window方式绑定,使用document方式不起作用
 $(window).on('scroll',function(){
  if(scrollTop() + windowHeight() >= (documentHeight() - 50/*滚动响应区域高度取50px*/)){
   waterallowData();
  }
 });

 function waterallowData(){
  $('.waterfllow-loading').addClass('active');
  
  /*$.ajax({
   url:url,
   type:"post",
   data: params,
   success:function(data,textStatus,jQXHR){
    //添加数据
    ...

    //隐藏加载条
    $('.waterfllow-loading.active').removeClass('active');
   }
  });*/
 }
 </script> 
</html>

안의 로딩바 사진은

입니다.

위 내용은 페이지 하단으로 스크롤하여 계속 로딩하는 방법에 대한 예시입니다. 모든 분들의 학습에 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.