mar*_*zzz 6 css jquery transition
它应该删除类transition(因此CSS转换属性),将div移动到200px(立即),重新应用transitioncss属性,然后将div设置为动画(占用1秒)到右边.相反,它冻结了.
看起来应用css left属性需要更多的时间transition按类删除?还是addClass()异步?
var elem = $('#elem');
elem.removeClass('transition');
elem.css('left', 200);
elem.addClass('transition');
elem.css('left', 0);Run Code Online (Sandbox Code Playgroud)
#container {
position: relative;
width: 400px;
height: 200px;
background-color: red;
}
#elem {
width: 50px;
height: 50px;
position: relative;
left: 0;
top: 0;
background-color: blue;
}
.transition.linear.scritta {
-webkit-transition: all 1.0s linear;
-moz-transition: all 1.0s linear;
-ms-transition: all 1.0s linear;
-o-transition: all 1.0s linear;
transition: all 1.0s linear;
}Run Code Online (Sandbox Code Playgroud)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="container">
<div id="elem" class="transition linear scritta"></div>
</div>Run Code Online (Sandbox Code Playgroud)
不,addClass是同步的.你可以看一下源代码:
addClass: function( value ) {
var classes, elem, cur, curValue, clazz, j, finalValue,
i = 0;
if ( jQuery.isFunction( value ) ) {
return this.each( function( j ) {
jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
} );
}
if ( typeof value === "string" && value ) {
classes = value.match( rnothtmlwhite ) || [];
while ( ( elem = this[ i++ ] ) ) {
curValue = getClass( elem );
cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
if ( cur ) {
j = 0;
while ( ( clazz = classes[ j++ ] ) ) {
if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
cur += clazz + " ";
}
}
// Only assign if different to avoid unneeded rendering.
finalValue = stripAndCollapse( cur );
if ( curValue !== finalValue ) {
elem.setAttribute( "class", finalValue );
}
}
}
}
return this;
}
Run Code Online (Sandbox Code Playgroud)
如果您使用本机API而不是jQuery,您会看到相同的结果.
var elem = document.getElementById('elem');
elem.classList.remove('transition');
elem.style.left = '200px';
elem.classList.add('transition');
elem.style.left = '0px';Run Code Online (Sandbox Code Playgroud)
#container {
position: relative;
width: 400px;
height: 200px;
background-color: red;
}
#elem {
width: 50px;
height: 50px;
position: relative;
left: 0;
top: 0;
background-color: blue;
}
.transition.linear.scritta {
-webkit-transition: all 1.0s linear;
-moz-transition: all 1.0s linear;
-ms-transition: all 1.0s linear;
-o-transition: all 1.0s linear;
transition: all 1.0s linear;
}Run Code Online (Sandbox Code Playgroud)
<div id="container">
<div id="elem" class="transition linear scritta"></div>
</div>Run Code Online (Sandbox Code Playgroud)
当您更改CSS样式时,浏览器似乎不会直接更新文档.这可能会产生绘画和重新布局以及昂贵的操作,如果你要改变更多的风格,那将毫无用处.
所以他们稍等一下让你改变更多样式,然后他们同时更新它们.
作为解决方案,您可以尝试使用异步代码:
requestAnimationFrame(function() {
elem.style.left = '0px';
});
Run Code Online (Sandbox Code Playgroud)
var elem = document.getElementById('elem');
elem.classList.remove('transition');
elem.style.left = '200px';
elem.classList.add('transition');
requestAnimationFrame(function() {
elem.style.left = '0px';
});Run Code Online (Sandbox Code Playgroud)
#container {
position: relative;
width: 400px;
height: 200px;
background-color: red;
}
#elem {
width: 50px;
height: 50px;
position: relative;
left: 0;
top: 0;
background-color: blue;
}
.transition.linear.scritta {
-webkit-transition: all 1.0s linear;
-moz-transition: all 1.0s linear;
-ms-transition: all 1.0s linear;
-o-transition: all 1.0s linear;
transition: all 1.0s linear;
}Run Code Online (Sandbox Code Playgroud)
<div id="container">
<div id="elem" class="transition linear scritta"></div>
</div>Run Code Online (Sandbox Code Playgroud)
强制更新getComputedStyle似乎也有效.
getComputedStyle(elem).transitionDuration; // force update
Run Code Online (Sandbox Code Playgroud)
var elem = document.getElementById('elem');
elem.classList.remove('transition');
elem.style.left = '200px';
elem.classList.add('transition');
getComputedStyle(elem).transitionDuration; // force update
elem.style.left = '0px';Run Code Online (Sandbox Code Playgroud)
#container {
position: relative;
width: 400px;
height: 200px;
background-color: red;
}
#elem {
width: 50px;
height: 50px;
position: relative;
left: 0;
top: 0;
background-color: blue;
}
.transition.linear.scritta {
-webkit-transition: all 1.0s linear;
-moz-transition: all 1.0s linear;
-ms-transition: all 1.0s linear;
-o-transition: all 1.0s linear;
transition: all 1.0s linear;
}Run Code Online (Sandbox Code Playgroud)
<div id="container">
<div id="elem" class="transition linear scritta"></div>
</div>Run Code Online (Sandbox Code Playgroud)