-
Notifications
You must be signed in to change notification settings - Fork 0
/
Start-Index-OfflineApp.html
376 lines (356 loc) · 12.8 KB
/
Start-Index-OfflineApp.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accuil | DeskTools</title>
<link rel="icon" href="Res/logo-DeskTools.png" type="image/x-icon">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
display: flex;
height: 100vh;
}
.sidebar {
width: 100px;
background-color: #818181;
color: #fff;
z-index: 9999;
position: fixed;
left: 0;
top: 0;
bottom: 0;
}
.topbar {
background-color: #8f8f8f;
color: #fff;
padding: 10px;
width: 100%;
box-sizing: border-box;
height: 70px;
}
#start {
background-color: #4a6c7e96;
color: #fff;
padding: 10px;
width: 100%;
box-sizing: border-box;
height: 420px;
}
.content {
flex: 1;
margin-left: 100px; /* Pour laisser de la place à la sidebar */
}
#list {
height: 600px;
width: 100%;
background-color: #dbdbdb;
}
.template {
width: 180px; /* Ajustez la largeur selon vos besoins */
border-radius: 10px;
background: #ececec8e; /* Fond blanc */
color: black;
padding: 20px;
text-align: center;
margin-left: 50px;
align-items: center;
margin-top: 20px;
}
.template img {
width: 70%; /* Ajustez la taille de l'image selon vos besoins */
border-radius: 10px;
}
.logo {
background: #8888888c; /* Fond gris */
width: 100%; /* Ajustez la taille de la case grise */
height: 50px; /* Ajustez la taille de la case grise */
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
margin-top: 9px; /* Marge pour l'espacement */
}
.logooth {
background: rgba(255, 255, 255, 0.438); /* Fond gris */
width: 50px; /* Ajustez la taille de la case grise */
height: 50px; /* Ajustez la taille de la case grise */
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
margin-top: 9px; /* Marge pour l'espacement */
margin-left: 25px;
}
#logomenu {
width: 35px; /* Ajustez la taille de la case grise */
height: 35px; /* Ajustez la taille de la case grise */
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
margin-top: 9px; /* Marge pour l'espacement */
margin-top: 30px;
margin-left: 33px;
margin-bottom: 40px;
}
.logooth img {
width: 70%;
height: 70%;
}
.logo img {
width: 30px; /* Ajustez la taille du logo à l'intérieur de la case grise */
}
.logo p {
margin-left: 7px;
}
.carousel {
display: flex;
align-items: center; /* Alignement horizontal au centre */
}
#menu {
position: fixed;
top: 0;
left: -18%;
width: 18%;
height: 100%;
background-color: #fff;
transition: left 0.3s;
z-index: 999999;
}
#emailDisplay {
display: flex;
justify-content: space-between; /* Alignement horizontal au centre */
align-items: center; /* Alignement vertical au centre si nécessaire */
margin-top: 10px;
margin-left: 7px;
margin-right: 7px;
}
#compatible_device {
width: 100%;
height: 35px;
background-color: transparent;
margin-top: 10px;
text-align: left;
}
#compatible_device img {
padding: 4px;
width: 25px;
height: 25px;
background-color: gray;
border-radius: 5px;
text-align: center;
}
/* Style du modal */
.modal {
display: none; /* Masquer le modal par défaut */
position: fixed; /* Position fixe */
z-index: 10000000; /* Mettre le modal au-dessus du reste du contenu */
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto; /* Activer le défilement si nécessaire */
background-color: rgba(0,0,0,0.4); /* Fond semi-transparent */
}
/* Contenu du modal */
.modal-content {
background-color: #fefefe;
margin: 15% auto; /* Centrer verticalement et horizontalement */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Largeur du contenu */
}
/* Style du bouton de fermeture */
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
</style>
</head>
<body>
<div id="unsupportedModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>L'accès à ce service n'est pas pris en charge sur cet appareil.</p>
</div>
</div>
<div id="menu" class="hidden">
<div id="emailDisplay">
<button id="menu-return-button" onclick="window.location.href = 'Start-Index-OfflineApp.html';">Retour au menu principale</button>
<button id="Conn-btn" onclick="openPopup(); toggleMenu();">Connectez vous</button>
</div>
</div>
<div class="container">
<div class="sidebar">
<img id="logomenu" src="Res/menu.png" alt="Logo 1">
<div class="logooth">
<img src="Res/home.png" alt="Logo 1">
</div>
<div class="logooth">
<img id="app1" src="Res/fichier (2).png" alt="Logo 2">
</div>
<div class="logooth">
<img id="app3" src="Res/fichier (4).png" alt="Logo 3">
</div>
<div class="logooth">
<img id="coscript" src="Res/logo-co-script-solo.png" alt="Logo 4">
</div>
</div>
<div class="content">
<div class="topbar">
<img style="margin-top: 6px;" src="Res/logo-text-small-100px.png" alt="Logo 1">
</div>
<div id="start">
<div class="carousel">
<div class="template">
<img id="to-writter" src="Res/page.png" alt="Image du Template">
<p>Fichier texte vide</p>
<div class="logo">
<img id="to-writter" src="Res/fichier (2).png" alt="Logo">
<p>DeskWritter</p>
</div>
<div id="compatible_device">
<img class="icon_device" src="Res/smartphone.png" alt="smartphone">
<img class="icon_device" src="Res/laptop.png" alt="laptop">
<img class="icon_device" src="Res/computer-tablet.png" alt="computer-tablet">
</div>
</div>
<div class="template">
<img id="to-code" src="Res/code.png" alt="Image du Template">
<p>Nouveau code</p>
<div class="logo">
<img id="to-code" src="Res/fichier (4).png" alt="Logo">
<p>DeskCode</p>
</div>
<div id="compatible_device">
<img class="icon_device" src="Res/laptop.png" alt="laptop">
</div>
</div>
<div class="template">
<img src="Res/pic.png" alt="Image du Template">
<p>Nouvelle image 1960x1450</p>
<div class="logo">
<img src="Res/fichier (5).png" alt="Logo">
<p>Pic'Edit</p>
</div>
<div id="compatible_device">
<img class="icon_device" src="Res/smartphone.png" alt="smartphone">
<img class="icon_device" src="Res/laptop.png" alt="laptop">
<img class="icon_device" src="Res/computer-tablet.png" alt="computer-tablet">
</div>
</div>
</div>
</div>
<div id="list">
</div>
</div>
</div>
<script>
//-----------------------------------------------------------------------Gestion de la connection a prismID-----------------------------------------------
var popupWindow;
// Fonction pour ouvrir la fenêtre contextuelle
function openPopup() {
var width = 500;
var height = 600;
var left = (window.innerWidth - width) / 2;
var top = (window.innerHeight - height) / 2;
var options = 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left;
popupWindow = window.open('ConnectionService-FirebasePupUp.html', 'Popup', options);
}
// Fonction appelée après la connexion réussie dans la fenêtre contextuelle
function onLoginSuccess(userInfo) {
// Extrayez l'e-mail de l'utilisateur
var userEmail = userInfo.email;
// Fermez la fenêtre contextuelle après traitement des informations
if (popupWindow) {
popupWindow.close();
}
}
</script>
<script>
const menu = document.getElementById('menu');
const menudev = document.getElementById('logomenu');
menudev.addEventListener('click', (event) => {
event.stopPropagation(); // Arrête la propagation de l'événement pour éviter la fermeture immédiate du menu
toggleMenu(); // Afficher ou masquer le menu
});
// Écouter les clics en dehors du menu pour le masquer
document.addEventListener('click', (event) => {
const isClickInsideMenu = menu.contains(event.target);
if (!isClickInsideMenu) {
menu.style.left = "-18%"; // Masquer le menu si le clic est en dehors du menu
}
});
function toggleMenu() {
// Si le menu est actuellement affiché, masquez-le. Sinon, affichez-le.
if (menu.style.left === "0px" || menu.style.left === "") {
menu.style.left = "-18%"; // Masquer le menu
} else {
menu.style.left = "0"; // Afficher le menu
}
}
//------------------------------------------------------lanceur-------------------------------------
// Sélectionnez les éléments à rediriger
var toWritter = document.getElementById('to-writter');
var toCode = document.getElementById('to-code');
var tocodeleft = document.getElementById('app3');
var towritterleft = document.getElementById('app1');
var toCloud = document.getElementById('serv-button-cloud');
var toConne = document.getElementById('serv-button-connection');
var coscripbtn = document.getElementById('coscript');
// Ajoutez des gestionnaires d'événements pour la redirection lors du clic
toWritter.addEventListener('click', function() {
window.location.href = 'BlocText.html';
});
coscripbtn.addEventListener('click', function() {
window.location.href = 'co-script/index.html';
});
// Ajoutez des gestionnaires d'événements pour la redirection lors du clic
towritterleft.addEventListener('click', function() {
window.location.href = 'BlocText.html';
});
// Fonction pour rediriger si la largeur de l'écran est inférieure à 900px
function redirectToDeskCodePage() {
var isSupported = document.documentElement.clientWidth >= 900;
if (isSupported) {
window.location.href = "DeskCode.html"
} else {
displayUnsupportedModal();
}
}
function displayUnsupportedModal() {
var modal = document.getElementById('unsupportedModal');
modal.style.display = "block";
}
// Fermer le modal lorsqu'on clique sur la croix
var closeBtn = document.getElementsByClassName("close")[0];
closeBtn.onclick = function() {
var modal = document.getElementById('unsupportedModal');
modal.style.display = "none";
}
// Fermer le modal lorsqu'on clique en dehors de celui-ci
window.onclick = function(event) {
var modal = document.getElementById('unsupportedModal');
if (event.target == modal) {
modal.style.display = "none";
}
}
// Appeler la fonction lors du clic sur les éléments
toCode.addEventListener('click', redirectToDeskCodePage);
tocodeleft.addEventListener('click', redirectToDeskCodePage);
</script>
</body>
</html>