我有一个foreach,可从processwire检索信息。 每行的左侧都有一个图像(类= Img1),右侧有一个div(类= Test2)内部的描述。 我想测量图像和包含描述的div的高度,选择最大的并将其设置为包含图像的div的高度(类= Test1)。 实际代码的问题在于,在第一次迭代时,最大的高度被存储并应用于所有行,而不仅仅是第一行。
我知道我应该使用each()迭代函数,我试图了解它是如何工作的,但是我没有成功。 有人可以帮我吗?
HTML
<?php $Ser = $pages->get("name=services");?>
<section id="<?=$Ser->title;?>" class="mea-service-section section-padding-shorter">
<?php $i = 0;
foreach($Ser->ServicesRepeater as $Ser):
$image = $Ser->ServicesRepeaterImage2;
$colFirst = "";
// if ($i%3 == 0) $colFirst = 'col_first'; //
$i++; ?>
<div class="container">
<div class="row mt-10" style="display: flex;">
<!-- Services Widget Section -->
<div class='outer-row' id="<?=$Ser->ServicesRepeaterHeadline;?>">
<div class="col-md-5 mea-title-section wow animated slideInLeft" data-wow-delay=".2s">
<div class="media-left-center vertical-align Test1">
<img src="<?=$image->url;?>" alt="<?=$image->description;?>" class="Img1 img-responsive center-block rcorners3">
</div>
</div>
<div class="col-md-7 <?=$colFirst;?> single-service-widget wow animated fadeInUp" data-wow-delay=".3s">
<div class="Test2">
<div class="media-body">
<h2 class="subtitle"><?=$Ser->ServicesRepeaterHeadline ?></h2>
<p><?=$Ser->ServicesRepeaterDescription ?></p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
</section>
jQuery
var divImgHeight = function() {
var divHeight = $('.Test2').height();
var imgHeight = $('.Img1').height();
if (imgHeight < divHeight) {
$('.Test1').css('height', divHeight+'px');
} else {
$('.Test1').css('height', imgHeight+'px');
}
}
$(document).ready(function() {
function resizeLinks(){
divImgHeight();
}
$(window).on("resize", resizeLinks);
resizeLinks();
});
正在构建的实际页面:https://brightnode.io/en/services/
答案 0 :(得分:0)
假设外部div是一个“行”,请为外部div提供一个类,以便可以对其进行引用:
<div class='outer-row' id="<?=$Ser->ServicesRepeaterHeadline;?>">
<div class="col-md-5 mea-title-section wow animated slideInLeft" data-wow-delay=".2s">
<div class="media-left-center vertical-align Test1">
<img src="<?=$image->url;?>" alt="<?=$image->description;?>" class="Img1 img-responsive center-block rcorners3">
</div>
</div>
<div class="col-md-7 <?=$colFirst;?> single-service-widget wow animated fadeInUp" data-wow-delay=".3s">
<div class="Test2">
<div class="media-body">
<h2 class="subtitle"><?=$Ser->ServicesRepeaterHeadline ?></h2>
<p><?=$Ser->ServicesRepeaterDescription ?></p>
</div>
</div>
</div>
</div>
然后遍历.outer-row
并将您的代码应用于每一行,使用this
引用该行,例如:
$(".outer-row").each(function() {
// at this point "this" is each of the .outer-row divs in turn
var divHeight = $('.Test2', this).height();
// or
var imgHeight = $(this).find('.Img1').height();
给予:
var divImgHeight = function() {
$(".outer-row").each(function() {
var row = $(this);
var divHeight = $('.Test2', row).height();
var imgHeight = $('.Img1', row).height();
if (imgHeight < divHeight) {
$('.Test1', row).css('height', divHeight+'px');
} else {
$('.Test1', row).css('height', imgHeight+'px');
}
});
}
$(document).ready(function() {
function resizeLinks() {
divImgHeight();
}
$(window).on("resize", resizeLinks);
resizeLinks();
});
编辑
要在所有元素上应用最大的高度,您首先需要遍历所有项目以获取最大的高度,然后遍历每行以应用。您可以应用一些快捷方式,但是概念是相同的。
var divImgHeight = function() {
// get all the heights from .Test2/.Img1
var heights = $(".outer-row .Test2,.outer-row .Img1").map(function() { return $(this).height(); }).toArray();
// get the largest height
var maxheight = Math.max.apply(Math, heights);
// apply to all .Test1s
$(".outer-row .Test1").css('height', maxHeight+'px');
}