-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
60 lines (57 loc) · 3.59 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<!--html manifest="" user-scalable=no -->
<html lang="en">
<head>
<meta charset="utf-8">
<!--link rel="manifest" href="manifest.web"-->
<meta name="robots" content="all" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimal-ui">
<meta name="theme-color" content="#000000">
<meta name="mobile-web-app-capable" content="yes">
<meta name="Description" content="Typescript project based on matter.ts implementation. This version 2 of visualjs game engine totally different approach , export name lib name is visualjs2.js . Whole project is based fully dependency build. Main file is app.ts . Class ioc saves singlton instances also bind. In this project html and css is also present. Based on canvas2D. Used lib Matter.js/ts in typescript variant.">
<meta http-equiv="Cache-control" content="public">
<meta name="msapplication-navbutton-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="robots" content="noindex">
<link rel="stylesheet" href="style/styles.css">
<link rel="icon" type="image/png" sizes="96x96" href="imgs/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="192x192" href="imgs/android-icon.png">
<link rel="icon" href="styles/favicon.ico" type="image/x-icon">
<intercept-url pattern="styles/favicon.ico" access="ROLE_ANONYMOUS"> </intercept-url>
<meta name="msapplication-TileImage" content="imgs/ms-icon-310x310.png">
<title>TS Game engine</title>
</head>
<body>
<noscript>
You need to allow JavaScript in you browser.
</noscript>
<div id="msgbox" class="log-network" style="display:none"></div>
<div id="message-box" class="message-box" style="display:none"></div>
<div id="network-panel" class="log-network" style="display:none" renderRegime="normal">
<div id="log-chat" class="log-chat" style="display:block">
</div>
<input type="text" id="room-name" placeholder="Private ID" title="id.required" value="MAINSERVER" class="myButton"
style="width:169px;">
<input type="text" id="your-name" placeholder="Username" title="Recommended" class="myButton" style="width:170px;display:none;">
<button id="continue" title="Click to join the room!" class="myButton" style="display:none;" >continue</button>
<div id="who-is-typing" class="whoIsTyping"></div>
<input type="text" id="sender" placeholder="" value="Hello" style="position:absolute;bottom:0;left:0;width:100%;z-index: 100;"
class="myButton">
<button id="display-network-panel" title="Show/Hide chat box" class="myButton" style="display:block;" >hide</button>
<div id="logger" class="logger"></div>
</div>
<div id="media-rtc2-controls" class="controls" style="display:none">
<button id="allow-webcam" class="icon myButton" disabled title="Enable Your Webcam"></button>
<button id="allow-mic" class="icon myButton" disabled title="Enable Your Microphone"></button>
<button id="allow-screen" class="icon myButton" disabled title="Enable Your Screen"></button>
<button id="share-files" class="icon myButton" disabled title="Select and Share Your Files"></button>
</div>
<video id="webCamView" class="webCamView myButton" style="display:none"></video>
<div id="popup" class="popup" style="display:none"></div>
<div id="media-rtc3-controls" class="popup-right-box" style="display:none"></div>
<!--div style="position: absolute;top: 40%;left:35%;z-index: 100000;"></div-->
<script type="module" src="visualts.engine.js"></script>
</body>
</html>