0

私はいくつかの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);
        });
    }

私は何が間違っているのですか?

前もって感謝します..

4

1 に答える 1

-1

私は同じ問題を抱えていました。.width() は変更されないデバイスの実際の幅のみをテストするため、innerWidth() は私のために働いたと思います....

于 2015-11-04T18:49:43.367 に答える