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();
});
});
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.