瀏覽代碼

horizontal screen (try2)

master
KaiSD 3 年之前
父節點
當前提交
4e592a4e56
共有 3 個文件被更改,包括 13 次插入5 次删除
  1. +1
    -1
      mjprot/index.html
  2. +0
    -4
      mjprot/manifest.json
  3. +12
    -0
      mjprot/screen.css

+ 1
- 1
mjprot/index.html 查看文件

@@ -112,7 +112,7 @@
visibility: visible;
}
</style>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="screen.css">
</head>
<body>
<canvas id='canvas'>


+ 0
- 4
mjprot/manifest.json 查看文件

@@ -1,4 +0,0 @@
{
"display": "standalone",
"orientation": "landscape"
}

+ 12
- 0
mjprot/screen.css 查看文件

@@ -0,0 +1,12 @@
@media screen and (orientation: portrait) {
html {
transform: rotate(-90deg);
transform-origin: left top;
width: 100vh;
height: 100vw;
overflow-x: hidden;
position: absolute;
top: 100%;
left: 0;
}
}

Loading…
取消
儲存