js 监听屏幕旋转变化(横屏/竖屏) 123456789101112131415<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <script> console.log(screen.orientation); window.addEventListener('onorientationchange', ()=>{ console.log(screen.orientation); }, true); </script></body></html> angle值 代表的屏幕方向 0 竖屏 90 向左横屏 -90/270 向右横屏 180 倒屏 javascript #js #javascript js 监听屏幕旋转变化(横屏/竖屏) https://github.com/chergn/chergn.github.io/d2a029ee7654/ 作者 全易 发布于 2024年3月28日 许可协议 js 的常用调试:弹框 和 console 上一篇 js 禁止修改变量:冻结对象或数组 Object.freeze() 下一篇