-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex_fr.html
172 lines (147 loc) · 5.38 KB
/
index_fr.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Josquin BERNARD" />
<meta
name="description"
content="Partez à la découverte de du grand hall dans un monde virtuel en 3D directement depuis votre navigateur sur Ordinateur/Mobile/XBox."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@virtualworldsfr" />
<meta name="twitter:creator" content="@virtualworldsfr" />
<meta property="og:url" content="https://mondesvirtuels.com/hall/" />
<meta property="og:title" content="Grand Hall" />
<meta
property="og:description"
content="Partez à la découverte du grand hall dans un monde virtuel en 3D directement depuis votre navigateur sur Ordinateur/Mobile/XBox."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://mondesvirtuels.com/hall/card/greathall.jpg"
/>
<title>Grand Hall</title>
<link rel="stylesheet" href="css/loader.css" />
<link rel="stylesheet" href="css/world.css" />
<link rel="stylesheet" href="css/gui.css" />
<link
rel="shortcut icon"
type="image/png"
href="images/favico_greathall.png"
/>
<!-- Google Analytics snippet added by Site Kit -->
<script src='https://www.googletagmanager.com/gtag/js?id=UA-16584131-1' id='google_gtagjs-js' async></script>
<script id='google_gtagjs-js-after'>
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag('set', 'linker', {"domains":["mondesvirtuels.com"]} );
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "UA-16584131-1", {"anonymize_ip":true});
gtag("config", "G-1P3CVXY9KX");
</script>
<!-- End Google Analytics snippet added by Site Kit -->
</head>
<body>
<!-- loading -->
<section id="loader" class="centered">
<div class="trigger"></div>
<span class="centered">Chargement en cours...</span>
</section>
<!-- gamepad screen pointer -->
<section id="screenTarget" class="centered hidden">
<div id="screenPoint" class="centered"></div>
</section>
<!-- gamepad action -->
<section id="gamepad" class="centered modal hidden">
<img src="images/button_xbox_x.png" />
<span></span>
</section>
<!-- gamepad status -->
<section id="gamepadStatus" class="centered modal hidden">
<!-- https://www.shareicon.net/author/yun-liu -->
<img src="images/gamepad.png" />
<span>GamePad connecté!</span>
</section>
<!-- buttons -->
<section id="gui">
<div id="fps">0 fps</div>
<div id="fullscreen">
<input
type="image"
id="btnFullScreen"
alt="Plein écran (X)"
title="Plein écran (X)"
src="images/expand.png"
/>
</div>
<div id="camera">
<input
type="image"
id="btnCamera"
alt="Changer camera (C)"
title="Changer camera (C)"
src="images/camera.png"
/>
</div>
<div id="navigation">
<input
type="image"
id="btnNavigation"
alt="Voler (F)"
title="Voler (F)"
src="images/walk.png"
/>
</div>
<div id="help">
<input
type="image"
id="btnHelp"
alt="Aide (H)"
title="Aide (H)"
src="images/help.png"
/>
</div>
</section>
<!-- help -->
<section id="help">
<div id="helpComputer" class="centered modal hidden">
<img src="images/computer_help_fr.png" />
<input
type="image"
class="btnHelpClose"
src="images/help_close_button_fr.png"
/>
</div>
<div id="helpMobile" class="centered modal hidden">
<img id="imgHelpMobile" src="images/mobile_help_fr.png" />
<img class="btnHelpClose" src="images/help_close_button_fr.png" />
</div>
<div id="helpGamePad" class="centered modal hidden">
<img src="images/gamepad_xbox_help_fr.png" />
</div>
</section>
<!-- 3d canvas -->
<canvas id="renderCanvas"></canvas>
<!-- main script -->
<script src="js/main.js" type="module"></script>
<!-- virtual joystick -->
<script src="js/virtualstick.js" type="module"></script>
<!-- gamepad -->
<script src="js/gamepad.js" type="module"></script>
<!-- gui -->
<script src="js/gui.js" type="module"></script>
<!-- world -->
<script src="js/world.js" type="module"></script>
<!-- an now where the magic is possible... -->
<!-- BabylonJS 3D Framework ( babylonjs.com )-->
<!--BabylonJS 5.8.0, mobile virtual joystick not working after that revision -->
<!--<script src="https://cdn.jsdelivr.net/npm/babylonjs@5.8.0/babylon.js"></script>-->
<!--<script src="https://cdn.jsdelivr.net/npm/babylonjs-gui@5.8.0/babylon.gui.min.js"></script>-->
<!--<script src="https://cdn.jsdelivr.net/npm/babylonjs-materials@5.8.0/babylon.skyMaterial.js"></script>-->
<!-- Babylon.js latest -->
<script src="https://cdn.babylonjs.com/babylon.js"></script>
<script src="https://cdn.babylonjs.com/gui/babylon.gui.min.js"></script>
<script src="https://cdn.babylonjs.com/materialsLibrary/babylonjs.materials.min.js"></script>
</body>
</html>