gpt4 book ai didi

jquery 检测手机方向

转载 作者:行者123 更新时间:2023-12-03 23:01:19 24 4
gpt4 key购买 nike

我编写了一些代码,提醒手机上的用户从横向变为纵向。这很有效,但如果用户从横向开始,它显然不会显示,因为没有方向变化。有没有办法只获取开始的方向?

$(window).on("orientationchange",function(){
if( (window.orientation == 90 && $( window ).width() < 780) || (window.orientation == -90 && $( window ).width() < 780) ) // Landscape
{
$('body').append('<div class="phoneLandscape"><h4>Sorry, this site is best viewed in Portrait Mode</h4></div>');
}
else // Portrait
{
$('.phoneLandscape').remove();
}
});

最佳答案

jQuery mobile 有方法 $(window).on("orientationchange") 但如果您希望在任何给定时间检测方向,请尝试此

if(window.innerHeight > window.innerWidth){
//portrait
}
if(window.innerWidth > window.innerHeight){
//landscape
}

关于jquery 检测手机方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30785642/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com