私はいくつかのjQueryを持っていますが、iPadがポートレートモードのときにのみ実行したいので、iPad(ランドスケープモード)にカーソルを合わせるとスクリプトが処理されます...
var portraitWidth = $(window).width(); //detect the iPad in Portrait orientation
if (portraitWidth < 769) {
$('.model-selector h2:first-child').toggle(function () {
$(this).parent().animate({
top: '-138px'
}, 250);
}, function () {
$('.model-selector').animate({
top: '-45px'
}, 250);
});
}
私は何が間違っているのですか?
前もって感謝します..