美文网首页
键盘挤压问题

键盘挤压问题

作者: 钢蹦儿_bf62 | 来源:发表于2019-12-02 12:01 被阅读0次

/* 在页面加载的时候调用 */

orient();

/* 在用户变化屏幕显示方向的时候调用*/

$(window).bind( 'orientationchange', function(e){

    orient();

});

function orient() {

    if (window.orientation == 0 || window.orientation == 180) {

        orientation = 'portrait';

        setTimeout(function () {

        var ph = $(".wrap").height();

        $(".wrap").height(ph);

        $(".model_result").height(ph);

        },500)

        return false;

    }

    else if (window.orientation == 90 || window.orientation == -90) {

        orientation = 'landscape';

        setTimeout(function () {

        var lh = $(".wrap").height();

        $(".wrap").height(lh);

        $(".model_result").height(lh);

        },500)

        return false;

    }

}

相关文章

网友评论

      本文标题:键盘挤压问题

      本文链接:https://www.haomeiwen.com/subject/spixgctx.html