We had an image, which seems to be vanishing for a second while rotating.This issue exists in IE8 and works fine in IE9 and other HTML5 supported browsers. We have used jQuery rotate plugin.
HTML
<img id="obj" src="obj.png"/>
CSS
#obj {
    position:absolute;
    left: 196px;
    top: 94px
}
JS
       $("#obj").animate({
                left: 5,
                top: 232
          }, {
                duration: 700,
       });
       $("#obj").rotate({
                angle: 0,
                animateTo: -64,
                duration: 2000
       });
Kindly give suggestions for the same.
 
     
    