gpt4 book ai didi

javascript - jQuery outerHeight() & height 在窗口调整为奇数像素时闪烁/失败

转载 作者:行者123 更新时间:2023-11-28 05:07:36 25 4
gpt4 key购买 nike

我在一个页面上有两个并排的元素。一个元素具有固定大小 (100vh) – .hero-half – 另一个元素具有可变长度的文本 – .project-details。当流体文本容器延伸到比图像容器高时,我想对其应用一个类,以限制其子元素之一的高度,以使文本容器的总高度回到等于图像高度。

HTML:

        <div class="project-details left">
<h1 class="project">Title</h1>
<div class="project-summary">
<div class="summary-container">
<p>A bunch of paragraphs here</p>
</div>
<a class="more" href="#">More</a>
<a class="less" href="#">Less</a>
</div>
</div>
<div class="hero hero-half right" style="background-image: url('/img/placeholder-vert1.jpg')"></div>

相关的CSS:

.hero-half {
width: 50%;
height: 100vh;
}

.project-details {
width: 50%;
height: auto;
}

.project-summary .summary-container {
overflow: hidden;

&.restrict-height {

.summary-container {
// set max height
max-height: calc(100vh - 615px);
}
}
}

这是我的 JS 代码:

$(function () {

var bpTab = 1024;

resize = function() {
var winWidth = $(window).width();
var heroHeight = $(".hero-half").outerHeight();
var boxHeight = $(".project-details").outerHeight();
var $box = $(".project-summary");

if ( boxHeight > heroHeight && winWidth > bpTab) {
// if on desktop layout AND if text is pusing box too big, restrict box height
$box.addClass("restrict-height");
} else {
// if not on desktop or text is not pushing box too big
$box.removeClass("restrict-height");
$box.removeClass("is-expanded");
};
};

// resize on window resize
$(window).bind("resize orientationchange", function(){
resize();
});

// resize on page load
resize();
});

因此,当 project-details div 达到高于 .hero-half 的高度时,它会添加一个类来为其中一个子元素设置最大高度,从而使 .project-details 的总高度回到等于或少于 .hero-half.

但是,当我调整窗口大小时强制文本将元素详细信息高度推得太高并触发限制高度类时,它仅在屏幕宽度和高度加起来为偶数(宽度和高度都为偶数)时才有效高度是偶数,或都是奇数)。如果总数是奇数,则元素详细信息的 outerHeight 似乎计算不正确。

我认为,问题在于 .project-details 的 outerHeight 有时会在其限制的文本高度之前的自然高度进行计算,有时会在应用该类之后以及在其限制的文本高度之后进行计算,因此将 .project-details 的高度降低到可接受的范围内。

我尝试为添加类添加超时延迟,希望额外的时间意味着 outerHeight 计算始终正确,但这并没有什么不同。

我应该如何更改此 JS 代码以确保 .project-details outerHeight 始终在应用 restrict-height 类之前读取高度?

相关的:为什么奇数像素尺寸会在这里产生任何影响?

最佳答案

解决方案是在 if/else 循环之前添加一个重置以标准化 div 高度,删除可能首先改变其高度的额外类。

var $box = $(".project-summary");

// reset
$box.removeClass("restrict-height");
$box.removeClass("is-expanded");

var winWidth = $(window).width();
var heroHeight = $(".hero-half").outerHeight();
var boxHeight = $(".project-details").outerHeight();

关于javascript - jQuery outerHeight() & height 在窗口调整为奇数像素时闪烁/失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39760541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com