我要求阻止网页进入移动设备中的横向模式。如何阻止移动设备的横向模式?
我在使用Google搜索时遇到了这个解决方案,但它并不适用于Chrome。
screen.addEventListener("orientationchange", function () {
console.log("The orientation of the screen is: " + screen.orientation);
});
screen.lockOrientation('landscape');
有没有办法在css / javascript中执行此操作?
答案 0 :(得分:0)
这个问题已经通过搜索得到了回答。这将提供您正在寻找的答案。
How do I lock the orientation to portrait mode in a iPhone Web Application?