Javascript jquery rotate仅适用于IE7中的1个图像

Javascript jquery rotate仅适用于IE7中的1个图像,javascript,jquery,rotation,internet-explorer-7,Javascript,Jquery,Rotation,Internet Explorer 7,我有两个图像要旋转 我正在使用jQueryRotate,它在任何现代浏览器中都能很好地工作,根据它的文档,它适用于IE6+ 链接到插件: 我的问题是,在IE

我有两个图像要旋转

我正在使用jQueryRotate,它在任何现代浏览器中都能很好地工作,根据它的文档,它适用于IE6+

链接到插件:

我的问题是,在IE<9中,我只能在一个页面上旋转一个图像,如果我再尝试,它们就不能正常工作(第一个动画如预期的那样,第二个动画都会中断)

有什么想法或者这是一个已知的问题吗

JS:

HTML:


请链接到您正在使用的插件。您是否检查过它是否与旧版IE兼容?deg@n0mercy的值是多少?@n0mercy的值是0-360,这取决于用户配置文件的“完成百分比”,例如,如果配置文件的完成百分比是75%,那么支持IE 7-8的人是谁?
$circle_50.rotate({
    angle: 0,
    animateTo:180,
    duration:400,
    center:["100%","50%"],
    easing:linear
});

setTimeout(function(){
    $circle_50_100.rotate({
        angle: 0,
        animateTo:deg - 180,
        duration:400,
        center:["0%","50%"],
        easing:linear
    });
},400);
<div id="percent-complete-circle-wrap">
    <img id="percent-50" src="/images/cand-percent-low.jpg" />
    <img id="percent-50-100" src="/images/cand-percent-low.jpg" />
</div>
#percent-50,
#percent-50-100{
    display:block;
    position: absolute;
    top:0px;
    height:100px;
    width:50px;
}

#percent-50{
    left:0px;
    z-index:3;
}

#percent-50-100{
    right:0px;
    z-index:1;
}

#percent-complete-circle-wrap{
    position:relative;
    margin:0 auto 20px auto;
    width:100px;
    height:100px;
    overflow:hidden;
}