在样式表更改期间禁用转换

时间:2014-02-01 18:58:34

标签: javascript jquery css css3 css-transitions

我尝试了这个解决方案:

What is the cleanest way to disable CSS transition effects temporarily?

但它不起作用。我仍然看到动画的东西。

$('body').addClass('notransition'); // the class that doesn't work  
$('body')[0].offsetHeight;
$('#main_style').attr('href', newStyleUrl);
$('body').removeClass('notransition');

有没有办法让它发挥作用?

0 个答案:

没有答案