我正在一个网站上工作,我需要停止横向视图&仅显示纵向视图。任何人都可以建议我怎么办?
我在我的代码中使用此功能来检测设备方向,但是当您将设备从纵向倾斜到横向时,它无效。
$(document).ready(function(){
if(window.innerWidth > window.innerHeight){
alert("Please use portrait!");
}
});
然后我试了
$(document).ready(function(){
window.addEventListener("orientationchange", function() {
// Announce the new orientation number
alert(window.orientation);
}, false);
});
似乎没问题,但现在我无法隐藏景观视图。请帮忙。
谢谢!