js 监听屏幕旋转变化(横屏/竖屏)

js 监听屏幕旋转变化(横屏/竖屏)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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 倒屏

js 监听屏幕旋转变化(横屏/竖屏)
https://github.com/chergn/chergn.github.io/d2a029ee7654/
作者
全易
发布于
2024年3月28日
许可协议