我有一个DOM元素与此效果应用:
#elem {
transition: height 0.4s ease;
}
我正在写一个调整这个元素大小的jQuery插件,我需要暂时禁用这些效果,这样我就可以顺利地调整它的大小。
暂时禁用这些效果(然后重新启用它们)的最优雅的方法是什么?考虑到它们可能从父母那里应用,也可能根本不应用。
我有一个DOM元素与此效果应用:
#elem {
transition: height 0.4s ease;
}
我正在写一个调整这个元素大小的jQuery插件,我需要暂时禁用这些效果,这样我就可以顺利地调整它的大小。
暂时禁用这些效果(然后重新启用它们)的最优雅的方法是什么?考虑到它们可能从父母那里应用,也可能根本不应用。
当前回答
对于纯JS解决方案(没有CSS类),只需将转换设置为“none”。若要恢复CSS中指定的转换,请将转换设置为空字符串。
// Remove the transition
elem.style.transition = 'none';
// Restore the transition
elem.style.transition = '';
如果使用供应商前缀,也需要设置这些前缀。
elem.style.webkitTransition = 'none'
其他回答
做
$('#elem').css('-webkit-transition','none !important');
在你的js杀死它?
显然,每一个都要重复。
对于纯JS解决方案(没有CSS类),只需将转换设置为“none”。若要恢复CSS中指定的转换,请将转换设置为空字符串。
// Remove the transition
elem.style.transition = 'none';
// Restore the transition
elem.style.transition = '';
如果使用供应商前缀,也需要设置这些前缀。
elem.style.webkitTransition = 'none'
如果你想要一个简单的非jquery解决方案来防止所有的过渡:
添加以下CSS:
body.no-transition * {
transition: none !important;
}
然后在js中:
document.body.classList.add("no-transition");
// do your work, and then either immediately remove the class:
document.body.classList.remove("no-transition");
// or, if browser rendering takes longer and you need to wait until a paint or two:
setTimeout(() => document.body.classList.remove("no-transition"), 1);
// (try changing 1 to a larger value if the transition is still applying)
我认为你可以创建一个单独的CSS类,你可以在这些情况下使用:
.disable-transition {
transition: none;
}
然后在jQuery中,你可以这样切换类:
$('#<your-element>').addClass('disable-transition');
你可以用下面的CSS代码禁用页面中所有元素的动画,过渡,转换:
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '* {' +
' transition-property: none !important;' +
' transform: none !important;' +
' animation: none !important;}';
document.getElementsByTagName('head')[0].appendChild(style);