gpt4 book ai didi

javascript - 使用 jQuery 2.1+ 更改 css 会忽略过渡属性

转载 作者:数据小太阳 更新时间:2023-10-29 03:54:57 28 4
gpt4 key购买 nike

我正在从 jQuery 2.0.3 切换到 2.1.0。

我注意到在 v2.1.0 中,当直接设置 css 属性时,css transition 属性被忽略了

$('#someElement').css('width','100px');

v2.0.3 中,我的元素将保持它的 css 转换,而在 v2.1.0 中我失去了它。

我想知道为什么要区别对待它,以及如何“打开”过渡效果。

在 jQuery 2.0.3 中,css transition 属性生效

$(function() {
$('.myClass').css('width', '100px');
});
.myClass {
height: 50px;
width: 300px;
background-color: red;
transition: width 3s;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<div class="myClass"></div>

在 jQuery 2.1.0 中,css transition 属性被忽略

$(function() {
$('.myClass').css('width', '100px');
});
.myClass {
height: 50px;
width: 300px;
background-color: red;
transition: width 3s;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div class="myClass"></div>

编辑:

我在 Chrome 版本 47.0.2526.106 m 中看到了这种奇怪的行为

在 Firefox 42.0 中,两者都可以正确设置动画

最佳答案

经过四处搜索,我认为这可能与针对问题 #14164 所做的更改有关在v2.1.0 release期间.根据标题,"Reduce forced layout reflows in init or methods" .

我比较了 v2.0.3 source codev2.1.0 source code ,看起来围绕 .ready() 方法以及事件的延迟方式进行了一些重构。更具体地说,我认为它可能与 v2.1.0 中的第 3407-3408 行有关,其中最初调用了 .ready() 方法(这在 v2.0.3 中不存在):

// Kick off the DOM ready check even if the user does not
jQuery.ready.promise();

至于解决方法,这种转换行为似乎在浏览器之间不一致。要解决 Chrome 中的问题,您可以推迟代码的执行并强制重绘。

setTimeout(function () {
$('.myClass').css('width', '100px');
}, 0);
.myClass {
height: 50px;
width: 300px;
background-color: red;
transition: width 3s;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<div class="myClass"></div>


或者,您也可以通过将脚本移动到页面底部来在 DOM 元素之后加载 jQuery。仍然令人困惑的是为什么这在 Chrome 中有所不同,但在 Firefox 中无关紧要;它必须与 DOM 在事件后的绘制/绘制方式有关。

$('.myClass').css('width', '100px');
.myClass {
height: 50px;
width: 300px;
background-color: red;
transition: width 3s;
}
<div class="myClass"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>

关于javascript - 使用 jQuery 2.1+ 更改 css 会忽略过渡属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34348104/

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