-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmobile.html
40 lines (40 loc) · 1.5 KB
/
mobile.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="asset/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="asset/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="asset/favicon/favicon-16x16.png">
<link rel="manifest" href="asset/favicon/site.webmanifest">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="ol3dm/css/openlive3d.css">
</head>
<body>
<script>
if(window.location.host.indexOf('github.io') > -1 && window.location.protocol != "https:"){
window.location.protocol = "https";
}
</script>
<!-- layout -->
<div class="w3-display-middle">
<div class="w3-container">
<img src="asset/logo.png" style="width:100%"/>
<text style="font-size:40px"> OpenLive3D </text>
</div>
<div class="w3-container" style="font-size:16px">
<br/>
<text> MOBILE NOT SUPPORTED!! </text>
<br/><br/>
<text> OpenLive3D is an open-source website to connect webcam with 3D model for VTubing </text>
<br/><br/>
<a id="mobilelink"> Link to GitHub!! </a>
</div>
</div>
<!-- local dependencies -->
<script src="ol3dm/js/config/config-manager.js"></script>
<script>
let mobilelink = document.getElementById('mobilelink');
mobilelink.href = defaultConfig["ORG_URL"];
</script>
</body>
</html>