我正在使用 Jquery Rotate 将图像旋转一米,效果很好,但在 IE7 和 IE8 中,它被推高了大约 200 像素,并且图像周围有黑色笔触/边框。
我正在使用它工作的 jQueryRotate3.js,但位置已关闭,并且不确定黑色边框来自哪里?
JS:
var start = 0;
// Sets the Value of the City for now
var angle = 1 + Math.floor(Math.random() * 180);
$("img.pointer").rotate({
angle: start,
animateTo: angle,
easing: $.easing.easeInOutSine
})
HTML:
<div class="city-details">
<div class="details">
<img class="pointer" src="http://demo.omnigon.com/christian_bovine/shamelesscity/images/pointer.png" alt="" />
</div>
</div>
你可以在这里看到代码:http: //jsfiddle.net/xtian/6gcS8/1/
我真的很想让这个在 IE7 和 IE8 中工作。