移動端初期化判定クロススクリーンか縦スクリーンか

1119 ワード

/*
               
*/
var html = "";
function orient() {
    if (window.orientation == 0 || window.orientation == 180) {
        //  
        $("#div_screenchange").css("display", "block");
    }
    else if (window.orientation == 90 || window.orientation == -90) {
        //  
        $("#div_screenchange").css("display", "none");
    }


}
/*            */
$(function () {
    orient();
});

/*                 */
window.addEventListener("orientationchange", function () {
    orient();
}, false);