我正在通过jQuery将div的background-color
动画化为transparent
$('div').animate('background-color', 'transparent');
除Internet Explorer 8之外,该版本在浏览器上都可以正常运行。我知道
background-color: transparent
对于IE 8可以正常运行。为什么在对值进行动画处理时这不能正常工作?谢谢
注意:我已经用DevTools检查了div,并且由于某种原因div是
rgb(255,255,255)
。 最佳答案
尝试这个:
$(".div").attr('style', 'background-color: transparent');
这对我有用。
将其设置为功能,并随时触发!