我有一个动画代码,其中不透明度被添加到div标签中...... 但同时IE8中没有添加不透明度 在下面提供我的代码...... 你能告诉我为什么它没有被添加......
function soccerMatches(matches) {
var $profile = $('.color'),
matchesIds = [],
$soccers;
$.each(matches, function(i, match) {
matchesIds.push('#profile' + match.title);
});
$soccers = $(matchesIds.join(', '));
**$profile.not($soccers).css('opacity', 0.33);**
$soccers.css('opacity', 1);
}
答案 0 :(得分:2)
IE8不支持“不透明度”