我有一个小的jQuery动画功能,它除了IE浏览器的所有工作。 在这里我的代码:HTML:
<div class="container">
<div class="bg"></div>
<div class="bgHover"></div>
</div>
CSS:
.container{width:54px; height:54px;}
.bgHover{background: url("../images/shine.png") no-repeat scroll -150px 0 rgba(0, 0, 0, 0); width:54px; height:54px; position: absolute; top: 8px; left: 8px;}
.bg{background-color:black; width:54px; height:54px;}
jQuery的:
$(document).ready(function(){
var $e = $(".container")
timer = setInterval(function(){
$e.find(".bgHover").stop().animate({backgroundPosition: 0},500,function(){
$e.find(".bgHover").css("background-position","-99px 0");
$e.find(".bgHover").animate({backgroundPosition: '99px 0'});
});
},2500);
});
请发现这是工作在所有浏览器IE除了上面的代码。