changed language button design, extracted image meta data into new config file

This commit is contained in:
2026-04-27 21:04:50 +02:00
parent ec369d5f6d
commit 7ec4e44c49
5 changed files with 406 additions and 324 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"images": [
{
"id": "pixelcnn_1",
"image": "images/mnist_conditioned_gen_results_cropped.png",
"image_pos": "center"
},
{
"id": "pixelcnn_2",
"image": "images/seminararbeit.png",
"image_pos": "left"
},
{
"id": "boardgame_1",
"image": "images/boardgame_demo.png",
"image_pos": "center"
},
{
"id": "boardgame_2",
"image": "images/boardgame_connection.png",
"image_pos": "center"
},
{
"id": "boardgame_3",
"image": "images/boardgame_ai.png",
"image_pos": "left"
},
{
"id": "towerdefense_1",
"image": "images/towerdefense_demo.png",
"image_pos": "center"
},
{
"id": "personal_website_1",
"image": "images/personal_website.png",
"image_pos": "left"
}
]
}
+21 -8
View File
@@ -10,10 +10,17 @@
<body> <body>
<aside class="sidebar"> <aside class="sidebar">
<div id="sidebar-top"> <div id="sidebar-top">
<h3 id="sidebar-top-head">Marvin Kraußer</h3> <h3 id="sidebar-top-head">Marvin Kraußer</h3>
<div id="sidebar-top-content"></div> <div id="sidebar-top-content"></div>
<div class="lang-dropdown"> </div>
<nav id="navbar">
</nav>
<div class="sidebar-bottom-margin">
<div class="lang-dropdown" id="lang-dropdown">
<button id="lang-button">Sprache</button> <button id="lang-button">Sprache</button>
<div id="lang-menu" class="lang-menu hidden"> <div id="lang-menu" class="lang-menu hidden">
@@ -21,14 +28,13 @@
<div class="lang-item hidden" data-lang="en">en</div> <div class="lang-item hidden" data-lang="en">en</div>
</div> </div>
</div> </div>
</div>
<nav id="navbar">
</nav>
<div id="sidebar-bottom"> <div id="sidebar-bottom">
<a target="_blank" link.rel="noopener noreferrer" <a target="_blank" link.rel="noopener noreferrer"
href="https://github.com/marvinkrausser">github.com/marvinkrausser ↗</a> href="https://github.com/marvinkrausser">github.com/marvinkrausser ↗</a>
<a href="mailto:marvin.krausser277@gmail.com">marvin.krausser277@gmail.com</a> <a href="mailto:marvin.krausser277@gmail.com">marvin.krausser277@gmail.com</a>
</div> </div>
</div>
</aside> </aside>
<div class="main-content"> <div class="main-content">
@@ -94,6 +100,8 @@
async function loadData() { async function loadData() {
const response = await fetch(`./lang/${lang}.json`); const response = await fetch(`./lang/${lang}.json`);
const image_response = await fetch(`./config/img_config.json`)
const image_config = await image_response.json()
const data = await response.json(); const data = await response.json();
const website_title = document.getElementById("website_title"); const website_title = document.getElementById("website_title");
@@ -218,7 +226,10 @@
const block_image = document.createElement("div"); const block_image = document.createElement("div");
const image = document.createElement("img"); const image = document.createElement("img");
image.src = content.image; const image_id = content.image;
const image_object = image_config.images.find(img => img.id === image_id);
image.className = image_object.image_pos;
image.src = image_object.image;
image.loading = "lazy"; image.loading = "lazy";
block_image.appendChild(image); block_image.appendChild(image);
@@ -285,16 +296,16 @@
const button = document.getElementById("lang-button"); const button = document.getElementById("lang-button");
const menu = document.getElementById("lang-menu"); const menu = document.getElementById("lang-menu");
const items = document.querySelectorAll(".lang-item"); const items = document.querySelectorAll(".lang-item");
const dropdown = document.getElementById("lang-dropdown");
button.textContent = lang; button.textContent = lang;
button.addEventListener("click", () => { button.addEventListener("click", () => {
items.forEach(item => { items.forEach(item => {
if (item.dataset.lang != lang) { item.classList.toggle("hidden", item.dataset.lang == lang);
item.classList.toggle("hidden");
}
}); });
menu.classList.toggle("hidden"); menu.classList.toggle("hidden");
dropdown.classList.toggle("show-border");
}); });
items.forEach(item => { items.forEach(item => {
@@ -303,6 +314,7 @@
button.textContent = item.textContent; button.textContent = item.textContent;
menu.classList.add("hidden"); menu.classList.add("hidden");
dropdown.classList.remove("show-border");
items.forEach(element => { items.forEach(element => {
element.classList.add("hidden"); element.classList.add("hidden");
}); });
@@ -315,6 +327,7 @@
document.addEventListener("click", (e) => { document.addEventListener("click", (e) => {
if (!e.target.closest(".lang-dropdown")) { if (!e.target.closest(".lang-dropdown")) {
menu.classList.add("hidden"); menu.classList.add("hidden");
dropdown.classList.remove("show-border");
items.forEach(element => { items.forEach(element => {
element.classList.add("hidden"); element.classList.add("hidden");
}); });
+7 -7
View File
@@ -23,12 +23,12 @@
{ {
"heading": "Bildgenerierung mit Deep Learning", "heading": "Bildgenerierung mit Deep Learning",
"text": "Das Modell verwendet Convolutional Neural Networks und Deep Learning zur Generierung von Bildern. Als Trainingsdatensatz wurden die MNIST-Digits verwendet und mittels CUDA auf einer GPU trainiert. Zusätzlich kann das Modell gezielt mit Klassen als Eingabe gesteuert werden, wie im Beispiel mit den Ziffern von 0 bis 9 gezeigt. Aufgrund begrenzter Ressourcen ist mein Modell auf Datensätze mit niedriger Komplexität beschränkt.", "text": "Das Modell verwendet Convolutional Neural Networks und Deep Learning zur Generierung von Bildern. Als Trainingsdatensatz wurden die MNIST-Digits verwendet und mittels CUDA auf einer GPU trainiert. Zusätzlich kann das Modell gezielt mit Klassen als Eingabe gesteuert werden, wie im Beispiel mit den Ziffern von 0 bis 9 gezeigt. Aufgrund begrenzter Ressourcen ist mein Modell auf Datensätze mit niedriger Komplexität beschränkt.",
"image": "images/mnist_conditioned_gen_results_cropped.png" "image": "pixelcnn_1"
}, },
{ {
"heading": "Seminararbeit", "heading": "Seminararbeit",
"text": "Zusätzlich zum Projekt wurde eine --link-- und ein --link-- erstellt.", "text": "Zusätzlich zum Projekt wurde eine --link-- und ein --link-- erstellt.",
"image": "images/seminararbeit.png", "image": "pixelcnn_2",
"links": [ "links": [
{ {
"id": "seminararbeit", "id": "seminararbeit",
@@ -60,7 +60,7 @@
{ {
"heading": "Client", "heading": "Client",
"text": "Der Game Client wurde mit Unity und C# entwickelt und basiert auf einem rundenbasierten Bewegungs- und Kartensystem. Sämtliche Designs wurden eigenständig erstellt. Auch ein --link-- und --link-- wurden erstellt.", "text": "Der Game Client wurde mit Unity und C# entwickelt und basiert auf einem rundenbasierten Bewegungs- und Kartensystem. Sämtliche Designs wurden eigenständig erstellt. Auch ein --link-- und --link-- wurden erstellt.",
"image": "images/boardgame_demo.png", "image": "boardgame_1",
"links": [ "links": [
{ {
"id": "entwicklerhandbuch", "id": "entwicklerhandbuch",
@@ -77,12 +77,12 @@
{ {
"heading": "Server", "heading": "Server",
"text": "Der Server wurde in C# mit einer mehrschichtigen Architektur umgesetzt, die eine klare Trennung zwischen WebSocket-Verbindungsmanagement und spielbezogener Logik (z. B. Spielerzuweisung und Sitzungsverwaltung) ermöglicht. Die Kommunikation zwischen Server und Client wurde durch ein definiertes JSON-Schema standardisiert, um die Kompatibilität und Austauschbarkeit der von verschiedenen Entwicklerteams entwickelten Komponenten sicherzustellen.", "text": "Der Server wurde in C# mit einer mehrschichtigen Architektur umgesetzt, die eine klare Trennung zwischen WebSocket-Verbindungsmanagement und spielbezogener Logik (z. B. Spielerzuweisung und Sitzungsverwaltung) ermöglicht. Die Kommunikation zwischen Server und Client wurde durch ein definiertes JSON-Schema standardisiert, um die Kompatibilität und Austauschbarkeit der von verschiedenen Entwicklerteams entwickelten Komponenten sicherzustellen.",
"image": "images/boardgame_connection.png" "image": "boardgame_2"
}, },
{ {
"heading": "KI-Spieler", "heading": "KI-Spieler",
"text": "Zusätzlich wurden mehrere regelbasierte KI-Spieler implementiert, die in das System integriert werden können. Die Codequalität wurde durch automatisierte Tests sichergestellt. Die Zusammenarbeit im Team erfolgte nach agilen Methoden (Scrum), und Server sowie KI wurden containerbasiert mit Docker bereitgestellt.", "text": "Zusätzlich wurden mehrere regelbasierte KI-Spieler implementiert, die in das System integriert werden können. Die Codequalität wurde durch automatisierte Tests sichergestellt. Die Zusammenarbeit im Team erfolgte nach agilen Methoden (Scrum), und Server sowie KI wurden containerbasiert mit Docker bereitgestellt.",
"image": "images/boardgame_ai.png" "image": "boardgame_3"
} }
] ]
}, },
@@ -107,7 +107,7 @@
{ {
"heading": "Singleplayer Tower Defense Game", "heading": "Singleplayer Tower Defense Game",
"text": "Einfaches Tower-Defense-Spiel das von Grund auf mit eigenen Designs erstellt wurde. Nutzt den A*-Algorithmus zur Berechnung des Laufweges. Ein Demo-Build ist im Github Repository vorhanden.", "text": "Einfaches Tower-Defense-Spiel das von Grund auf mit eigenen Designs erstellt wurde. Nutzt den A*-Algorithmus zur Berechnung des Laufweges. Ein Demo-Build ist im Github Repository vorhanden.",
"image": "images/towerdefense_demo.png" "image": "towerdefense_1"
} }
] ]
}, },
@@ -126,7 +126,7 @@
{ {
"heading": "Technisches", "heading": "Technisches",
"text": "Die Website wurde mit HTML, CSS und JavaScript ohne die Verwendung externer Libraries entwickelt. Der Inhalt ist in sprachspezifischen JSON-Dateien gespeichert. Die Website wird dynamisch mithilfe von JavaScript aus der jeweiligen JSON-Datei generiert. Das Git-Repository verwendet einen Feature-Branch-Workflow, um die Korrektheit der Website auch während der Entwicklung sicherzustellen.", "text": "Die Website wurde mit HTML, CSS und JavaScript ohne die Verwendung externer Libraries entwickelt. Der Inhalt ist in sprachspezifischen JSON-Dateien gespeichert. Die Website wird dynamisch mithilfe von JavaScript aus der jeweiligen JSON-Datei generiert. Das Git-Repository verwendet einen Feature-Branch-Workflow, um die Korrektheit der Website auch während der Entwicklung sicherzustellen.",
"image": "images/personal_website.png" "image": "personal_website_1"
} }
] ]
} }
+7 -7
View File
@@ -23,12 +23,12 @@
{ {
"heading": "Image generation with Deep Learning", "heading": "Image generation with Deep Learning",
"text": "The model uses Convolutional Neural Networks and deep learning to generate images. The MNIST digits dataset was used for training, and the model was trained on a GPU using CUDA. Additionally, the model can be specifically controlled with class inputs, as shown in the example with digits from 0 to 9. Due to limited resources, my model is restricted to low-complexity datasets.", "text": "The model uses Convolutional Neural Networks and deep learning to generate images. The MNIST digits dataset was used for training, and the model was trained on a GPU using CUDA. Additionally, the model can be specifically controlled with class inputs, as shown in the example with digits from 0 to 9. Due to limited resources, my model is restricted to low-complexity datasets.",
"image": "images/mnist_conditioned_gen_results_cropped.png" "image": "pixelcnn_1"
}, },
{ {
"heading": "Seminar paper", "heading": "Seminar paper",
"text": "A --link-- and --link-- were created alongside the Project.", "text": "A --link-- and --link-- were created alongside the Project.",
"image": "images/seminararbeit.png", "image": "pixelcnn_2",
"links": [ "links": [
{ {
"id": "seminararbeit", "id": "seminararbeit",
@@ -60,7 +60,7 @@
{ {
"heading": "Client", "heading": "Client",
"text": "The game client was developed using Unity and C# and is based on a turn-based movement and card system. All designs were created independently. A --link-- and --link-- were also created.", "text": "The game client was developed using Unity and C# and is based on a turn-based movement and card system. All designs were created independently. A --link-- and --link-- were also created.",
"image": "images/boardgame_demo.png", "image": "boardgame_1",
"links": [ "links": [
{ {
"id": "entwicklerhandbuch", "id": "entwicklerhandbuch",
@@ -77,12 +77,12 @@
{ {
"heading": "Server", "heading": "Server",
"text": "The server was implemented in C# using a layered architecture that ensures a clear separation between WebSocket connection management and game-related logic (e.g. player assignment and session management). Communication between server and client was standardized using a defined JSON schema to ensure compatibility and interchangeability of components developed by different teams.", "text": "The server was implemented in C# using a layered architecture that ensures a clear separation between WebSocket connection management and game-related logic (e.g. player assignment and session management). Communication between server and client was standardized using a defined JSON schema to ensure compatibility and interchangeability of components developed by different teams.",
"image": "images/boardgame_connection.png" "image": "boardgame_2"
}, },
{ {
"heading": "AI Players", "heading": "AI Players",
"text": "In addition, several rule-based AI players were implemented that can be integrated into the system. Code quality was ensured through automated tests. Team collaboration followed agile methods (Scrum), and both server and AI were deployed using Docker containers.", "text": "In addition, several rule-based AI players were implemented that can be integrated into the system. Code quality was ensured through automated tests. Team collaboration followed agile methods (Scrum), and both server and AI were deployed using Docker containers.",
"image": "images/boardgame_ai.png" "image": "boardgame_3"
} }
] ]
}, },
@@ -107,7 +107,7 @@
{ {
"heading": "Singleplayer Tower Defense Game", "heading": "Singleplayer Tower Defense Game",
"text": "Simple tower defense game created entirely from scratch with custom designs. Uses the A* algorithm to calculate the pathfinding route. A demo build is available in the GitHub repository.", "text": "Simple tower defense game created entirely from scratch with custom designs. Uses the A* algorithm to calculate the pathfinding route. A demo build is available in the GitHub repository.",
"image": "images/towerdefense_demo.png" "image": "towerdefense_1"
} }
] ]
}, },
@@ -126,7 +126,7 @@
{ {
"heading": "Technical details", "heading": "Technical details",
"text": "The website was developed using HTML, CSS, and JavaScript without the use of external libraries. The content is stored in language-specific JSON files. The website is dynamically generated using JavaScript based on the respective JSON file. The Git repository follows a feature-branch workflow to ensure correctness of the website even during development.", "text": "The website was developed using HTML, CSS, and JavaScript without the use of external libraries. The content is stored in language-specific JSON files. The website is dynamically generated using JavaScript based on the respective JSON file. The Git repository follows a feature-branch workflow to ensure correctness of the website even during development.",
"image": "images/personal_website.png" "image": "personal_website_1"
} }
] ]
} }
+60 -30
View File
@@ -9,6 +9,7 @@
--sans: 'DM Sans', system-ui, sans-serif; --sans: 'DM Sans', system-ui, sans-serif;
--nav-w: 230px; --nav-w: 230px;
--font-size: 17px; --font-size: 17px;
--margin-main-content: 100px;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@@ -67,21 +68,36 @@ a {
display: flex; display: flex;
gap: 3px; gap: 3px;
margin-top: 10px; margin-top: 10px;
width: 83px; width: 91px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
border: none;
background: none;
margin-bottom: 10px;
}
.lang-dropdown.show-border {
border: 1px solid var(--border);
border-radius: 8px;
background: var(--bg2);
} }
.lang-menu { .lang-menu {
display: flex; display: flex;
align-items: center;
gap: 3px; gap: 3px;
margin-top: 5px;
} }
.lang-item { .lang-item {
cursor: pointer; cursor: pointer;
background-color: var(--surface); background-color: var(--surface);
width: 40px; width: 40px;
height: 20px; height: 24px;
text-align: center; display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--border); border: 1px solid var(--border);
border-radius: 8px; border-radius: 8px;
color: var(--muted); color: var(--muted);
@@ -187,10 +203,16 @@ option {
font-size: 13px; font-size: 13px;
} }
.sidebar-bottom-margin {
margin-top: auto;
display: flex;
flex-direction: column;
align-items: center;
}
#sidebar-bottom { #sidebar-bottom {
padding: 36px 32px 28px; padding: 36px 32px 28px;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
margin-top: auto;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 14px; gap: 14px;
@@ -208,9 +230,9 @@ option {
#introduction { #introduction {
padding-top: 100px; padding-top: 100px;
margin-left: 60px; margin-left: var(--margin-main-content);
margin-bottom: 60px; margin-bottom: 60px;
margin-right: 100px; margin-right: var(--margin-main-content);
} }
#introduction p { #introduction p {
@@ -227,15 +249,15 @@ option {
} }
.content-block { .content-block {
height: 400px; height: 600px;
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
.section-header { .section-header {
margin: 80px; margin: 80px;
margin-left: 60px; margin-left: var(--margin-main-content);
margin-right: 40%; margin-right: var(--margin-main-content);
} }
.tags { .tags {
@@ -263,34 +285,48 @@ option {
overflow: hidden; overflow: hidden;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
display: flex;
} }
.block-image.right { .block-image.right {
margin-right: 60px; margin-right: var(--margin-main-content);
border-left: 1px solid var(--border); border-left: 1px solid var(--border);
justify-content: left;
} }
.block-image.left { .block-image.left {
margin-left: 60px; margin-left: var(--margin-main-content);
border-right: 1px solid var(--border); border-right: 1px solid var(--border);
justify-content: right;
}
.block-image img {
height: 100%;
width: 100%;
max-width: 700px;
max-height: 700px;
object-fit: cover;
}
.block-image img.left {
object-position: left;
}
.block-image img.center {
object-position: center;
}
.block-image img.right {
object-position: right;
} }
.block-text { .block-text {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
border-top: 1px solid var(--border);
overflow: hidden; overflow: hidden;
} margin-right: var(--margin-main-content);
padding-left: var(--margin-main-content);
.block-text.right {
margin-right: 60px;
padding-left: 60px;
}
.block-text.left {
padding-right: 60px;
margin-left: 60px;
} }
.text-content { .text-content {
@@ -302,12 +338,6 @@ option {
font-weight: normal; font-weight: normal;
} }
.block-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.text-link:hover { .text-link:hover {
border-color: var(--text); border-color: var(--text);
} }
@@ -325,7 +355,7 @@ option {
} }
.link-row { .link-row {
margin: 60px; margin: var(--margin-main-content);
margin-top: 30px; margin-top: 30px;
} }