forked from Kasix-nexus/Nexus-XR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
260 lines (232 loc) · 11 KB
/
index.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>NexusXR Beta</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Подключение шрифта Roboto из Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- Подключение Remix Icons -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
<!-- Подключение Tailwind CSS через CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Дополнительные стили для читаемости и эффекта размытия -->
<style>
/* Применение шрифта Roboto глобально */
body,
button,
input,
h1,
p {
font-family: "Roboto", sans-serif;
}
/* Усиление эффекта Gaussian blur */
#welcomeWindow {
backdrop-filter: blur(20px); /* Увеличенное значение размытия */
}
/* Улучшение читаемости текста */
#welcomeWindow h1,
#welcomeWindow p {
color: #ffffff; /* Белый цвет текста */
text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Тень для лучшего контраста */
}
/* Дополнительные стили для canvas */
canvas {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 0;
}
#background-color-button {
position: relative;
}
#color-picker {
display: none;
position: absolute;
top: 100%;
right: 0;
z-index: 100;
}
</style>
</head>
<body
class="w-screen h-screen overflow-hidden relative bg-gray-900 flex items-center justify-center"
>
<!-- Окно приветствия -->
<div
id="welcomeWindow"
class="relative z-10 p-10 bg-white bg-opacity-10 rounded-3xl text-center max-w-md w-full"
>
<h1 class="text-4xl font-bold mb-4" data-i18n="welcomeTitle">
Hello
</h1>
<p class="text-lg mb-6" data-i18n="welcomeMessage">
Welcome to Nexus XR, where you can create your own worlds and
view them on PC, phone, and any XR glasses.
</p>
<button
id="startButton"
class="w-16 h-16 text-2xl bg-white text-gray-700 rounded-full transition-all duration-300 hover:bg-white hover:scale-110 hover:shadow-lg flex items-center justify-center mx-auto"
data-i18n="startButton"
title="Start"
>
<i class="ri-play-circle-line"></i>
</button>
</div>
<!-- Контейнер для кнопок -->
<div
id="upload-container"
class="fixed top-4 left-1/2 -translate-x-1/2 z-30 bg-white/60 p-2 rounded-full backdrop-blur-xl flex gap-2 items-center shadow-lg"
>
<!-- Кнопка загрузки GLTF модели -->
<button
id="upload-button"
class="w-12 h-12 text-xl bg-white/60 border border-gray-300/50 rounded-full cursor-pointer transition-all duration-200 ease-in-out hover:bg-white hover:scale-110 hover:shadow-md flex items-center justify-center"
data-i18n="uploadButton"
title="Upload GLTF"
>
<i class="ri-upload-2-line"></i>
</button>
<!-- Скрытый файл для выбора файлов -->
<input
type="file"
id="file-input"
accept=".gltf, .glb"
style="display: none"
/>
<!-- Кнопка переключения фонового видео -->
<button
id="toggle-video-background-button"
class="w-12 h-12 text-xl bg-white/60 border border-gray-300/50 rounded-full cursor-pointer transition-all duration-200 ease-in-out hover:bg-white hover:scale-110 hover:shadow-md flex items-center justify-center"
data-i18n="toggleWebcamButton"
title="Enable Webcam (Alpha)"
>
<i class="ri-webcam-line"></i>
</button>
<!-- Кнопка выбора цвета фона -->
<button
id="background-color-button"
class="w-12 h-12 text-xl bg-white/60 border border-gray-300/50 rounded-full cursor-pointer transition-all duration-200 ease-in-out hover:bg-white hover:scale-110 hover:shadow-md relative flex items-center justify-center"
data-i18n="backgroundColorButton"
title="Background Color"
>
<i class="ri-palette-line"></i>
</button>
<!-- Скрытый цветовой пикер -->
<input
type="color"
id="color-picker"
class="absolute top-full right-0 mt-2"
/>
</div>
<!-- Скрипт для управления UI элементами -->
<script>
// Словарь переводов
const translations = {
en: {
welcomeTitle: "Hello",
welcomeMessage:
"Welcome to Nexus XR, where you can create your own worlds and view them on PC, phone, and any XR glasses.",
startButton: "Start",
uploadButton: "Upload GLTF",
toggleWebcamButton: "Enable Webcam (Alpha)",
backgroundColorButton: "Background Color",
disableWebcam: "Disable Webcam",
enableWebcam: "Enable Webcam",
},
ru: {
welcomeTitle: "Здравствуйте",
welcomeMessage:
"Добро пожаловать в Nexus XR, где можно создавать свои миры и просматривать их с ПК, телефона и любых (XR) очков.",
startButton: "Начать",
uploadButton: "Загрузить GLTF",
toggleWebcamButton: "Включить WebCam (Alpha)",
backgroundColorButton: "Цвет фона",
disableWebcam: "Выключить WebCam",
enableWebcam: "Включить WebCam",
},
};
let currentLanguage = "en"; // Язык по умолчанию
// Функция для обновления текста на основе выбранного языка
function updateLanguage(lang) {
document.querySelectorAll("[data-i18n]").forEach((element) => {
const key = element.getAttribute("data-i18n");
if (translations[lang] && translations[lang][key]) {
element.title = translations[lang][key];
}
});
// Обновление текста кнопки переключения веб-камеры
const toggleWebcamButton = document.getElementById(
"toggle-video-background-button",
);
if (toggleWebcamButton) {
const key = window.videoPlaneVisible
? "disableWebcam"
: "enableWebcam";
toggleWebcamButton.title = translations[lang][key];
}
}
// Настройка кнопки "Start" для скрытия окна приветствия
function setupStartButton() {
const startButton = document.getElementById("startButton");
const welcomeWindow = document.getElementById("welcomeWindow");
if (!startButton || !welcomeWindow) {
console.error(
"Не удалось найти элементы startButton или welcomeWindow в DOM.",
);
return;
}
startButton.addEventListener("click", () => {
welcomeWindow.classList.add("hidden");
});
}
// Настройка кнопки выбора цвета фона и цветового пикера
function setupBackgroundColorButton() {
const backgroundColorButton = document.getElementById(
"background-color-button",
);
const colorPicker = document.getElementById("color-picker");
if (!backgroundColorButton || !colorPicker) {
console.error(
"Не удалось найти элементы background-color-button или color-picker в DOM.",
);
return;
}
backgroundColorButton.addEventListener("click", () => {
colorPicker.click();
});
colorPicker.addEventListener("input", (event) => {
const selectedColor = event.target.value;
document.body.style.backgroundColor = selectedColor;
// Обновляем цвет фона сцены Three.js
if (typeof setSceneBackgroundColor === "function") {
setSceneBackgroundColor(selectedColor);
}
});
}
// Инициализация всех настроек UI
function initUI() {
updateLanguage(currentLanguage);
setupStartButton();
setupBackgroundColorButton();
}
// Ожидание загрузки DOM перед инициализацией UI
document.addEventListener("DOMContentLoaded", () => {
initUI();
});
// Слушатель изменений видимости видеофона из Main.js
window.addEventListener("videoPlaneVisibleChanged", () => {
updateLanguage(currentLanguage);
});
</script>
<!-- Скрипт Three.js -->
<script type="module" src="./Main.js"></script>
</body>
</html>