gpt4 book ai didi

javascript - CSS Transition 在 jQuery .load 回调上失败

转载 作者:技术小花猫 更新时间:2023-10-29 12:41:15 24 4
gpt4 key购买 nike

我有一个函数,它使用 jQuery 将 html 加载到一个表中,然后使用回调将一个类添加到其中一行。该功能由页面上的各种 UI 驱动事件触发。我还有一个 css 过渡规则,所以颜色应该淡入(transition: background-color 1000ms linear)。该函数如下所示:

function load_tbody(row_id) {
$('tbody').load("load_tbody.php", function() {
$(row_id).addClass('green');
});
}

加载 html 后,类成功添加,行颜色设置为绿色。但是,我的 css 转换规则似乎被忽略了。

当我添加一个轻微的延迟时,即使是 10 毫秒,它也能正常工作:

function load_tbody(row_id) {
$('tbody').load("load_tbody.php", function() {
setTimeout(function() {
$(row_id).addClass('green');
}, 10);
});
}

jQuery docs for .load()状态:

If a "complete" callback is provided, it is executed afterpost-processing and HTML insertion has been performed.

对我而言,这表明新元素已加载到 dom 中并应用了现有样式并准备好进行操作。为什么转换在第一个示例中失败但在第二个示例中成功?

这是一个功能齐全的示例页面,用于演示相关行为:

http://so-37035335.dev.zuma-design.com/

虽然上面的示例从 cdn 链接 jQuery 2.2.3 版,但实际页面使用的是 1.7.1 版。在两个版本中都可以观察到相同的行为。

更新:

在考虑了下面提供的一些评论和答案之后,我偶然发现了一些更令人困惑的事情。用户@gdyrrahitis 提出的建议促使我这样做:

function tbody_fade(row_id) {
$('tbody').load("load_tbody.php", function() {
$('tbody').fadeIn(0, function() {
$(this).find(row_id).addClass('green');
});
});
}

fadeIn() 回调中添加类是有效的,即使持续时间为 0ms。所以这让我想知道......如果该元素理论上无论如何都存在,那么在我添加该类之前浏览器认为它具有什么背景颜色。所以我记录了 background-color:

console.log($(row_id).css('background-color'));

你知道吗?只需获取背景色颜色即可使一切正常:

function tbody_get_style(row_id) {
$('tbody').load("load_tbody.php", function() {
$(row_id).css('background-color');
$(row_id).addClass('green');
});
}

只需添加 $(row_id).css('background-color'); 这行看似什么都不做就会导致过渡效果起作用。这是一个演示:

http://so-37035335-b.dev.zuma-design.com/

看到这里,我简直傻眼了。为什么这行得通?它只是增加了一个小的延迟,还是 jQuery 获取 css 属性以某种方式对新添加元素的状态产生了实质性影响?

最佳答案

jQuery load 旨在将请求的所有内容放入页面。

您可以通过使用 $.get 来利用 jQuery Deferred 对象的强大功能。

看看这个plunk .

来自 plunk 的代码片段

function load_tbody(row_id) {
$.when($.get("load_tbody.html", function(response) {
$('tbody').hide().html(response).fadeIn(100, function() {
$(this).find(row_id).addClass('green');
});
}));
}

我正在使用 $.when 它将在 $.get 解析后立即运行其回调,这意味着将获取 HTML 响应。获取响应后,它被附加到 tbody,它是 fadedIn(fadeIn 方法),显示后,.green类被添加到所需的行。

请注意,如果您只是将 html 和类附加到 row_id,您将看不到转换,因为它会立即执行。使用 fadeIn 的一些漂亮的视觉技巧可以完成这项工作。

更新

在 DOM 中新添加的元素上,不会触发 CSS3 transition。这主要是因为控制所有动画的内部浏览器引擎。有许多关于该问题的解决方法的文章,以及 stackoverflow 的答案。可以在那里找到其他资源,我相信这些资源可以比我更好地解释这个主题。

这个答案是关于退后一步并更改在 DOM 中呈现动态元素的功能部分,而无需使用 setTimeoutrequestAnimationFrame。这只是以清晰一致的方式实现您想要实现的目标的另一种方式,因为 jQuery 可以跨浏览器工作。 fadeIn(100, ... 是 catch 浏览器即将渲染的下一个可用帧所需要的。它可能会少得多,该值只是为了满足视觉美感。

另一种解决方法是完全不使用过渡,而是使用animation。但根据我的测试,这在 IE Edge 中失败了,在 Chrome、Firefox 上运行良好。

请查看以下资源:

更新 2

看看 specification拜托,因为那里有关于 CSS3 transitions 的有趣内容。

...This processing of a set of simultaneous style changes is called a style change event. (Implementations typically have a style change event to correspond with their desired screen refresh rate, and when up-to-date computed style or layout information is needed for a script API that depends on it.)

Since this specification does not define when a style change event occurs, and thus what changes to computed values are considered simultaneous, authors should be aware that changing any of the transition properties a small amount of time after making a change that might transition can result in behavior that varies between implementations, since the changes might be considered simultaneous in some implementations but not others.

When a style change event occurs, implementations must start transitions based on the computed values that changed in that event. If an element is not in the document during that style change even or was not in the document during the previous style change event, then transitions are not started for that element in that style change event.

关于javascript - CSS Transition 在 jQuery .load 回调上失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37035335/

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