-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjavascript.js
176 lines (123 loc) · 5.06 KB
/
javascript.js
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
// ANIMATION 1 - die den Titel auf der Titelseit auseinander zieht
window.addEventListener('scroll', function() {
const scrollAmount = window.scrollY;
const portfolio = document.getElementById('portfolio');
const name = document.getElementById('name');
const shiftFactor = scrollAmount * 0.2;
portfolio.style.transform = `translateX(${-shiftFactor}px)`; //links
name.style.transform = `translateX(${shiftFactor}px)`; //rechts
});
//ANIMATION 2 - die macht, dass das Titelbild verschwindet sobald man beim "A little about me ankommt"
document.addEventListener("DOMContentLoaded", function () {
const containers = document.querySelectorAll('.timeline-container');
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('show');
} else {
entry.target.classList.remove('show');
}
});
}, { threshold: 0 });
containers.forEach(container => {
observer.observe(container);
});
const titleImageContainer = document.querySelector('.container');
const titleImageObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.intersectionRatio <= 0.15) {
entry.target.style.opacity = '0';
entry.target.style.transition = 'opacity 0.5s ease';
} else {
entry.target.style.opacity = '1';
entry.target.style.transition = 'opacity 0.5s ease';
}
});
}, { threshold: [0.15] });
titleImageObserver.observe(titleImageContainer);
});
//ANIMATION 3 - für das Erscheinen der einzelnen Container beim Scrollen der Timeline
document.addEventListener("DOMContentLoaded", function () {
const containers = document.querySelectorAll('.timeline-container');
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('show');
} else {
entry.target.classList.remove('show');
}
});
}, { threshold: 0}); // 0% des Elements müssen sichtbar sein, bevor es erscheint
containers.forEach(container => {
observer.observe(container);
});
});
//ANIMATION 4 - Random Facts abut me
const facts = [
"I'm more afraid of jellyfish than sharks",
"My favourite food is sushi",
"I favour cats over dogs",
"My dream is to obtain a private pilot's licence (PPL)",
];
let currentFactIndex = 0;
function showNextFact() {
const factText = document.getElementById("factText");
factText.classList.remove('slide-in', 'slide-out'); // Entferne vorherige Animationen
// Setzt den neuen Fakttext
factText.innerText = facts[currentFactIndex];
currentFactIndex = (currentFactIndex + 1) % facts.length;
// Füge die Animationen hinzu
setTimeout(() => {
factText.classList.add('slide-in');
}, 100);
// Entferne die Animation nach einer bestimmten Zeit
setTimeout(() => {
factText.classList.remove('slide-in');
factText.classList.add('slide-out');
}, 4000); // 4 Sekunden Ansicht
}
// Führt die Anzeige alle 5 Sekunden aus
setInterval(showNextFact, 5000);
//ANIMATION 5 - Wechsel auf Darkmode - ToggleButton
document.addEventListener("DOMContentLoaded", function () {
const toggleButton = document.getElementById("colorModeToggle");
toggleButton.addEventListener("change", function () {
if (toggleButton.checked) {
document.body.classList.add("dark-mode");
document.body.classList.remove("light-mode");
} else {
document.body.classList.add("light-mode");
document.body.classList.remove("dark-mode");
}
});
document.body.classList.add("light-mode");
});
//ANIMATION 6 - E-Mail zusenden (EmailJS)
emailjs.init("jiQVv7gsTCgnFNRJb");
document.getElementById("contact-form").addEventListener("submit", function (event) {
event.preventDefault();
// Eingabefelder auslesen
const nameInput = document.getElementById("name");
const emailInput = document.getElementById("email");
const messageInput = document.getElementById("message");
const name = nameInput.value;
const email = emailInput.value;
const message = messageInput.value;
emailjs.send("service_by6qoms", "template_54lxrnq", {
from_name: name,
from_email: email,
message: message,
}).then(
function (response) {
alert("Nachricht erfolgreich gesendet!");
// Eingabefelder leeren
nameInput.value = "";
emailInput.value = "";
messageInput.value = "";
},
function (error) {
alert("Fehler beim Senden der Nachricht: " + error.text);
}
);
});
//Animation 7 - Spotify -> Code wurde nach dem Erhalt des Tokens wieder entfernt