폭포 흐름 레이아웃의 매우 간단한 구현 방법

小云云
풀어 주다: 2018-01-23 09:28:42
원래의
1936명이 탐색했습니다.

이 기사에서는 Jquery를 사용하여 매우 간단한 폭포 흐름 레이아웃을 구현하는 예를 주로 소개합니다. 코드는 간단하고 수정하기 쉽습니다. 아래 편집기를 살펴보겠습니다. 모든 사람에게 도움이 되기를 바랍니다.

1. 효과를 보세요!

2.html 코드 index.html


<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Title</title>
 <style>
 ul{position: relative;padding: 0 -3px;list-style: none;width: 600px;margin: 0 auto}
 li{width: 33.33%;position: absolute;box-sizing: border-box;display: block; }
 img{width: 100%;height: auto;display: block;}
 </style>
 <script src="./jquery-1.12.4.min.js"></script>
</head>
<body style="background: #000">
 <ul class="flowLayout-box">
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u17.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u19.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u114.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u116.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u118.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u120.png" alt=""></li>
 <li class="flowLayout-item"> <img class="flowLayout-pic" src="./img/u132.png" alt=""></li>
 </ul>
</body>
</html>
로그인 후 복사

3. 플러그인 코드


(function ($) {
 $.fn.flowLayout = function(options) {
 var dft = {
 gapWidth:16, //间隙
 gapHeight:16, //间歇
 column:3 //列
 };
 var ops = $.extend(dft,options);
 var _this = $(this);
 _this.width((_this.parents(&#39;.flowLayout-box&#39;).width()-2*ops.gapWidth)/3)
 var _pWidth=_this.parents(&#39;.flowLayout-box&#39;).width();
 $(".flowLayout-box").css({
 &#39;opacity&#39;:0
 });
 var columnHeight=[],columnIndex=0;
 for (var i=0 ;i<ops.column;i++){
 columnHeight.push(0);
 }
 setTimeout(function () {
 for(var j =0 ; j< _this.length ;j++){
 console.log(columnHeight[columnIndex]);
 $(_this).eq(j).css({
 &#39;top&#39;:columnHeight[columnIndex]+ops.gapHeight+&#39;px&#39;,
 &#39;left&#39;:_pWidth*columnIndex/3+&#39;px&#39;
 })
 columnHeight[columnIndex]+=$(_this).eq(j).height()+ops.gapHeight
 columnIndex=getIndex();
 }
 },50)
 function getIndex() {
 var columnIndex=0,maxHeight=0;
 for(var i =0 ;i < columnHeight.length ;i++){
 if(columnHeight[i]<columnHeight[columnIndex]){
 columnIndex=i;
 }
 if(columnHeight[i]>maxHeight){
 maxHeight=columnHeight[i]
 }
 }
 $(".flowLayout-box").css({
 &#39;opacity&#39;:1,
 &#39;height&#39;:maxHeight
 });
 return columnIndex;
 }
 }
 })(jQuery); 
로그인 후 복사

4.

$(function () {
 $(&#39;.flowLayout-box li&#39;).flowLayout({});
 })
로그인 후 복사

코드는 다음과 같습니다. 간단하고 수정하기 쉽습니다. 가져가서 사용하세요.

관련 권장 사항:

jQuery Masonry 폭포 흐름 레이아웃에 대한 자세한 설명

JS 폭포 흐름 레이아웃 예제 구현 JavaScript를 사용하여 폭포 흐름 레이아웃의 효과 코드 구현

위 내용은 폭포 흐름 레이아웃의 매우 간단한 구현 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!