Переглянути джерело

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;
}
}

Завантаження…
Відмінити
Зберегти