-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
423 lines (367 loc) · 15.7 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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meteroite™️ | Maxgamer</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #121212;
color: #e0e0e0;
display: flex;
flex-direction: column;
min-height: 100vh;
background-image: url('icons/pycharm64.png');
background-size: cover;
background-position: center;
background-attachment: fixed; /* Das Bild bleibt beim Scrollen fixiert */
background-repeat: no-repeat;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
flex: 1;
}
header {
background: linear-gradient(45deg, #1e1e1e, #3498db); /* Sanfter Verlauf von Dunkelgrau zu Blau */
color: #e0e0e0;
padding: 16px 0; /* Etwas mehr Padding oben und unten für mehr Raum */
min-height: 80px; /* Größere Höhe für mehr Präsenz */
border-bottom: 3px solid #3498db; /* Border bleibt gleich, aber jetzt mit Verlauf kombiniert */
border-radius: 10px 10px 0 0; /* Abgerundete obere Ecken */
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Leichter Schlagschatten */
position: relative;
z-index: 10; /* Sicherstellen, dass der Header immer oben bleibt */
}
header h1 {
margin: 0;
font-size: 36px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
transition: transform 0.3s ease-in-out; /* Smooth Hover-Effekt */
}
header h1:hover {
transform: scale(1.1); /* Vergrößerung des Headers, wenn der Benutzer mit der Maus darüber fährt */
color: #ffffff; /* Änderung der Schriftfarbe bei Hover */
}
.tab {
overflow: hidden;
border: 1px solid #333;
background-color: #1e1e1e;
position: relative; /* Sicherstellen, dass die Tabs über dem Hintergrund bleiben */
z-index: 5;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
color: #e0e0e0;
}
.tab button:hover {
background-color: #333;
}
.tab button.active {
background-color: #3498db;
color: #121212;
}
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #333;
border-top: none;
background-color: #1e1e1e;
position: relative; /* Sicherstellen, dass der Inhalt über dem Hintergrund bleibt */
z-index: 5;
}
.social-links a {
display: inline-block;
margin: 0 10px;
font-size: 24px;
color: #3498db;
text-decoration: none;
}
.social-links a:hover {
color: #2980b9;
}
.code-snippet {
background-color: #2b2b2b;
border: 1px solid #444;
border-radius: 4px;
padding: 10px;
margin-bottom: 10px;
font-family: monospace;
white-space: pre-wrap;
}
.collapsible {
background-color: #2b2b2b;
color: #e0e0e0;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #3498db;
}
.collapsible:after {
content: '\002B';
color: #e0e0e0;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
background-color: #1e1e1e;
}
.social-links {
display: flex;
flex-direction: column;
}
.social-links a {
display: flex;
align-items: center;
margin: 5px 0;
text-decoration: none;
color: inherit;
}
.social-icon {
width: 24px;
height: 24px;
margin-right: 8px;
}
footer {
background-color: #1e1e1e;
color: #e0e0e0;
padding: 20px 0;
text-align: center;
border-top: #3498db 3px solid;
position: relative; /* Sicherstellen, dass der Footer über dem Hintergrund bleibt */
z-index: 10;
}
.language-switch {
background-color: #3498db;
color: #e0e0e0;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin: 20px 0;
transition: background-color 0.3s;
}
.language-switch:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Meteroite™️</h1>
</div>
</header>
<div class="container">
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'Home')" id="defaultOpen">Home</button>
<button class="tablinks" onclick="openTab(event, 'Socials')">Socials</button>
<button class="tablinks" onclick="openTab(event, 'CodeSnippets')">Code Snippets</button>
<button class="tablinks" onclick="openTab(event, 'Changelog')">Changelog</button>
</div>
<div id="Home" class="tabcontent">
<h2 id="homeTitle"></h2>
<p id="homeText1"></p>
<p id="homeText2"></p>
<p id="homeText3"></p>
<p id="homeText4"></p>
<p id="homeText5"></p>
<p id="homeText6"></p>
<p id="homeText7"></p>
<button id="languageSwitch" class="language-switch">Switch to English</button>
</div>
<div id="Socials" class="tabcontent">
<h2>My Socials</h2>
<div class="social-links">
<a href="https://www.reddit.com/user/MaxgamerGG1264/" target="_blank">
<img src="icons/reddit.svg" alt="Reddit" class="social-icon"> Reddit
</a>
<a href="https://www.instagram.com/maxgamergg?igsh=ejN1NGxzMnJwNXY4" target="_blank">
<img src="icons/instagram.svg" alt="Instagram" class="social-icon"> Instagram
</a>
<a href="https://x.com/MaxgamerGGs" target="_blank">
<img src="icons/x.svg" alt="X" class="social-icon"> X
</a>
<a href="https://discord.com/channels/@me" target="_blank">
<img src="icons/discord.svg" alt="Discord" class="social-icon"> Discord (maxgamergg)
</a>
<a href="https://github.com/maxgamergg" target="_blank">
<img src="icons/github.svg" alt="GitHub" class="social-icon"> GitHub
</a>
<a href="https://github.com/MeteoriteStudio" target="_blank">
<img src="icons/astra-round.png" alt="GitHub" class="social-icon"> GitHub Meteroite™️
</a>
<a href="https://www.youtube.com/@maxgamergg" target="_blank">
<img src="icons/youtube.svg" alt="YouTube" class="social-icon"> YouTube
</a>
<a href="https://www.tiktok.com/@maxgamergg1264" target="_blank">
<img src="icons/tiktok.svg" alt="TikTok" class="social-icon"> TikTok
</a>
</div>
</div>
<div id="CodeSnippets" class="tabcontent">
<h2>Useful Code Snippets i made.</h2>
<div id="snippetsContainer"></div>
</div>
<div id="Changelog" class="tabcontent">
<h2>Changelog</h2>
<div id="changelogContent"></div>
</div>
</div>
<script>
function openTab(evt, tabName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className += " active";
if (tabName === "CodeSnippets" && !document.getElementById("snippetsContainer").innerHTML) {
loadCodeSnippets();
}
if (tabName === "Changelog" && !document.getElementById("changelogContent").innerHTML) {
loadChangelog();
}
}
function loadCodeSnippets() {
fetch('code_snippets.txt')
.then(response => {
if (!response.ok) throw new Error("Failed to load code snippets.");
return response.text();
})
.then(data => {
const snippets = data.split('##').filter(snippet => snippet.trim() !== '');
const snippetsContainer = document.getElementById('snippetsContainer');
snippets.forEach(snippet => {
const [title, ...codeLines] = snippet.trim().split('\n');
const code = codeLines.join('\n').replace(/^#/, '').replace(/#$/, '').trim();
const button = document.createElement('button');
button.className = 'collapsible';
button.textContent = title;
const content = document.createElement('div');
content.className = 'content';
const pre = document.createElement('pre');
pre.className = 'code-snippet';
pre.textContent = code;
content.appendChild(pre);
snippetsContainer.appendChild(button);
snippetsContainer.appendChild(content);
});
setupCollapsibles();
})
.catch(error => {
document.getElementById('snippetsContainer').textContent = "Error loading code snippets.";
console.error(error);
});
}
function loadChangelog() {
fetch('changelog.md')
.then(response => response.text())
.then(data => {
if (typeof marked !== 'undefined') {
document.getElementById('changelogContent').innerHTML = marked.parse(data);
} else {
document.getElementById('changelogContent').textContent = data;
}
})
.catch(error => {
document.getElementById('changelogContent').textContent = "Error loading changelog.";
console.error(error);
});
}
function setupCollapsibles() {
document.getElementById('snippetsContainer').addEventListener("click", function(event) {
if (event.target.classList.contains("collapsible")) {
event.target.classList.toggle("active");
var content = event.target.nextElementSibling;
if (content.style.maxHeight) {
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
}
});
}
document.addEventListener('DOMContentLoaded', function() {
toggleLanguage(); // Ruft die Funktion direkt beim Laden der Seite auf
});
document.getElementById('languageSwitch').addEventListener('click', toggleLanguage);
let isEnglish = true;
function toggleLanguage() {
isEnglish = !isEnglish;
const languageSwitchButton = document.getElementById('languageSwitch');
const homeTitle = document.getElementById('homeTitle');
const homeText1 = document.getElementById('homeText1');
const homeText2 = document.getElementById('homeText2');
const homeText3 = document.getElementById('homeText3');
const homeText4 = document.getElementById('homeText4');
const homeText5 = document.getElementById('homeText5');
const homeText6 = document.getElementById('homeText6');
const homeText7 = document.getElementById('homeText7');
if (isEnglish) {
languageSwitchButton.textContent = "Zu Deutsch wechseln";
homeTitle.textContent = "Hello everybody!";
homeText1.textContent = "I am known as Maxgamer, on the internet and in some videogames, I came up with this name about 8 years ago when I had to choose a name for the first time in a videogame, and since then I call myself that way everywhere, because I take the decision of my former self to heart. I am also called MaxgamerGG in some games, many think that 'GG' in my name stands for 'Good Game', but actually it stands for something else, it stands for my last name and the last name of an old friend.";
homeText2.textContent = "At the moment I am very interested in how computers work and I am learning Python and Kotlin as well as OpenGL to maybe program my first video game. *yay*.";
homeText3.textContent = "I made this website because I was also interested in how a browser works and when I saw html I thought 'I must be able to do that' so here I am, making a site and learning things I enjoy.";
homeText4.textContent = "The internet is so fascinating but also so scary, I ask everyone to use their own password for each account and not to download everything without paying attention to what it is, so I ask you to be careful on the internet and not to do anything stupid ;D.";
homeText5.textContent = "I will improve this website with the time and plan for the future to make a very simple nice game and probably publish it here!";
homeText6.textContent = "As a small tip, if someone wants to learn programming:";
homeText7.textContent = "Start small, because small successes lead to the motivation you need when programming!";
}
else {
languageSwitchButton.textContent = "Switch to English";
homeTitle.textContent = "Hallo zusammen!";
homeText1.textContent = "Ich bin bekannt als Maxgamer, im Internet und in einigen Videospielen, ich kam zu diesem Namen vor etwa fast 8 Jahren, als ich zum ersten Mal in einem Videospiel einen Namen wählen musste und seitdem nenne ich mich überall so, weil ich die Entscheidung meines früheren Ichs zu Herzen nehme. Ich heiße auch MaxgamerGG in einigen Spielen, viele Leute denken, dass 'GG' in meinem Namen für 'Good Game' steht, aber eigentlich steht es für etwas anderes, es steht für meinen Nachnamen und den Nachnamen eines alten Freundes.";
homeText2.textContent = "Im Moment interessiere ich mich sehr dafür, wie Computer genau funktionieren, ich lerne Python und Kotlin und plane OpenGL zu lernen, um vielleicht mein erstes Videospiel zu programmieren. *juhu";
homeText3.textContent = "Ich habe diese Seite erstellt, weil ich mich auch dafür interessiere, wie ein Browser funktioniert und als ich HTML sah, dachte ich: 'Das muss ich können', also habe ich mir eine Seite erstellt und lerne Sachen, die mir Spaß machen.";
homeText4.textContent = "Das Internet ist so faszinierend, aber auch so gefährlich, deshalb bitte ich jeden, ein eigenes Passwort für jeden Account zu benutzen und nicht immer alles herunterzuladen, ohne darauf zu achten, was es ist, also bitte ich euch, im Netz vorsichtig zu sein und nichts Dummes anzurichten ;D.";
homeText5.textContent = "Ich werde diese Seite mit der Zeit verbessern und plane für die Zukunft ein sehr einfaches und schönes Spiel zu machen und es wahrscheinlich hier zu veröffentlichen!";
homeText6.textContent = "Als kleiner Tipp, falls jemand programmieren lernen möchte:";
homeText7.textContent = "Klein anfangen, denn kleine Erfolge bringen Motivation und die braucht man beim Programmieren!";
}
}
document.getElementById("defaultOpen").click();
</script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<footer>
<p>2024 Meteroite™️ | Maxgamer | Release 1.0.2</p><a href="https://stats.uptimerobot.com/1bM6OM4pTN" target="_blank">UptimeRobot</a>
</footer>
</body>
</html>