We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d40473 commit 05875e0Copy full SHA for 05875e0
routes/+page.svelte
@@ -1,6 +1,16 @@
1
<script lang="ts">
2
-import { onDestroy } from "svelte";
+import { onDestroy, onMount } from "svelte";
3
4
+onMount(() => {
5
+ const userAgent = navigator.userAgent.toLowerCase();
6
+ if (
7
+ userAgent.includes("android") ||
8
+ userAgent.match(/iphone|ipad|ipod/) ||
9
+ (userAgent.includes("macintosh") && navigator.maxTouchPoints >= 1) /* recent iPad */
10
+ ) {
11
+ window.alert("このゲームはPC用です。キーボードが接続されていない端末ではプレイできません。");
12
+ }
13
+});
14
onDestroy(() => {
15
// document.body.style.backgroundColor = "black";
16
});
0 commit comments