js 사용자 정의 폭포 흐름 레이아웃 플러그 인

6000 단어 js폭포 류
폭포 흐름 구 조 는 홈 페이지 에서 자주 사용 하 는 구조 방식 으로 그 구 조 는 다음 과 같은 특징 이 있다.
폭포 흐름 배치 특징:
(1)그림 과 글 요 소 를 열 별로 배치한다.
(2)열 폭 은 일치 하지만 높이 는 다르다.
(3)레이아웃 과정 에서 높이 가 가장 작은 열 에 데 이 터 를 우선 보충 합 니 다.
다음은 사용자 정의 jQuery 폭포 흐름 플러그 인 입 니 다:jquery.my Waterfull.js

(function ($) {
 $.fn.extend({
  myWaterfull: function () {

   var parentWidth = $(this).width(); //       
   var childItems = $(this).children();
   var childWidth = childItems.width(); //        
   var column = 5; //        
   //             
   var space = (parentWidth - column * childWidth) / (column - 1);
   //      ,              
   var arrHeight = [];

   //          
   $.each(childItems, function (index, item) {
    if (index < column) { //            
     $(item).css({
      top: 0,
      left: index * (childWidth + space)
     });
     arrHeight.push($(item).height() + space); //                
    } else {
     //          
     var minIndex = 0;
     var minValue = arrHeight[minIndex];
     //            
     for (var i = 0; i < arrHeight.length; i++) {
      if (minValue > arrHeight[i]) {
       minValue = arrHeight[i];
       minIndex = i;
      }
     }

     //             
     $(item).css({
      top: minValue + space,
      left: minIndex * (childWidth + space)
     });

     //      
     arrHeight[minIndex] += $(item).height() + space;
    }
   });

   //                 ,           
   //                 
   var maxHeight = 0;
   for (var i = 0; i < arrHeight.length; i++) {
    if (maxHeight < arrHeight[i]) {
     maxHeight = arrHeight[i];
    }
   }

   //        
   $(this).height(maxHeight);

  }
 });
})(jQuery);

사용 예시:
여기 서 HTML 구 조 를 가정 합 니 다.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
 <meta charset="UTF-8">
 <title>       </title>
 <style>
* {
 margin: 0;
 padding: 0;
}

body {
 font-family: Microsoft Yahei;
 background-color: #f5f5f5;
}

.container {
 width: 1200px;
 margin: 0 auto;
 padding-top: 50px;
}

.container > .items {
 position: relative;
}

.container > .items > .item {
 width: 232px;
 position: absolute;
 box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
 overflow: hidden;
}

.container > .items > .item > img {
 width: 100%;
 display: block;
 height: 232px;
}

.container > .items > .item:nth-child(3n) > img {
 width: 100%;
 display: block;
 height: 350px;
}

.container > .items > .item > p {
 margin: 0;
 padding: 10px;
 background: #fff;
}

.container > .btn {
 width: 280px;
 height: 40px;
 text-align: center;
 line-height: 40px;
 background-color: #ccc;
 border-radius: 8px;
 font-size: 24px;
 cursor: pointer;
}

.container > .loading {
 background-color: transparent;
}
</style>
</head>
<body>
<div class="container">
 <div class="items">

 </div>
 <div class="btn loading">    ...</div>
</div>

스 크 립 트 파일 을 작성 합 니 다.배경 에서 하위 요소 의 데 이 터 를 가 져 오고 artTemplate 템 플 릿 엔진 으로 데 이 터 를 페이지 에 렌 더 링 한다 고 가정 합 니 다.

<script src="JS/jquery.min.js"></script>
<script src="JS/jquery.myWaterfull.js"></script>
<script src="JS/template.js"></script>

//      
<script id="template" type="text/html">
 {{ each items as item index}}
 <div class="item">
  <img src="{{item.path}}" alt="">
  <p>{{item.text}}</p>
 </div>
 {{/each}}
</script>

//    
$(function () {
 //      ,        
 var page = 1, pageSize = 20;
 // DOM      ,     render  
 render();
 function render() {
  $.ajax({
   type: "get",
   url: "php/data.php",
   data: {
    page: page,
    pageSize: pageSize
   },
   beforeSend: function () { //             
    $(".btn").html("    ...").addClass("loading");
   },
   success: function (data) {
    //2.      ,    
    var tplStr = template("template", data);
    $(".items").append(tplStr);
    $(".items").myWaterfull();
    //      ,         
    $(".btn").html("    ").removeClass("loading");
    //          ,     
    if (data.items.length < pageSize) {
     $(".btn").html("       ").addClass("loading");
    }
    //       ,       page    
    page = data.page;
   }
  });
 }

 //      ,       
 $(".btn").on('click',function () {
  if($(".btn").hasClass("loading")) return false;
  render();
 });

 //                 
 $(window).on('scroll',function () {
  //         
  var isBottom = ($('.items').height()-($(window).height()-$('.items').offset().top))-$(window).scrollTop();
  if (isBottom <= 200 && !$('.btn').hasClass("loading")) render();
 });


});
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기