これが単純なバックラウンド位置のアニメーションです。マウスアウェイのIE8がアニメーション化しないのはなぜですか?OperaとFirefoxはアクションを表示せず、Chromeだけがうまく機能します。すべての最新バージョンのブラウザで動作させる方法は?
$(function(){
$(".call_order").hover(function() {
$(this).stop().animate({
backgroundPositionX: "-300"
}, 100);
} , function() {
$(this).stop().animate({
backgroundPositionX: "0"
}, 100);
});
});