こんにちは皆さん、私はこの単純な jquery アニメーションを持っています
$(window).load(function() {
//Top Header Logo Expand
$("#logo-expand").mouseenter(function() {
$(this).animate({
width: "170px"
}, 300 );
});
$("#logo-expand").mouseleave(function() {
$(this).animate({
width: "56px"
}, 300 );
});
});
電話の解像度でアニメーションを無効にしたいのですが、jquery メディア クエリを使用してどうすればよいですか?
これが私のhttp://jsfiddle.net/MyKnB/5/ です
前もって感謝します