From 0af2d19c141bc25e762b09db4f3a65966d5f6458 Mon Sep 17 00:00:00 2001 From: Michi Date: Mon, 30 May 2022 18:40:54 +0200 Subject: [PATCH] Update index.html --- index.html | 72 ++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 62 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index a5523fd..3327129 100644 --- a/index.html +++ b/index.html @@ -25,13 +25,13 @@ - + - + @@ -65,6 +65,7 @@ About me Socialmedia Projects + FAQ Contact me @@ -83,13 +84,21 @@ -
+

About me

Hi, my name is Michi von Ah and I'm loading... years old. I'm interested in smartphones, computers and electromobility (mainly Tesla). In my free time I like to be on the computer and program something (for example this website), go for a walk or bake a cake. I also like to listen to music and podcasts. Besides, I'm an Apple fan and would love to have a Tesla someday. This is my website and here you can find some stuff I created. Good Luck!

Funfact: This website consists of a total of just over 1′169 lines of code.

+
+ + + + + + +
@@ -98,7 +107,7 @@
-
+

Socialmedia

@@ -154,7 +163,7 @@
- +
@@ -186,7 +195,7 @@
- +
@@ -202,7 +211,7 @@
-
+

Projects

@@ -241,7 +250,26 @@
-
+
+
+

FAQ - Frequently Asked Questions

+
+
+ +

Did you programed this website yourself?

+

Yes, I programmed this website myself using HTML, CSS and JavaScript programming languages.

+
+ +
+ +

How did you get into computers?

+

I came to computers because I have been interested in computers and other technology since I was very young. When I was a kid, I always wanted my own laptop and often made laptops, printers and more out of cardboard. I was finally able to fulfill my dream of having my own laptop in the second grade.

+
+
+
+
+ +

Contact me

If you want contact me, fill out this form or send a mail to info@michivonah.ch.

@@ -314,8 +342,8 @@ // Instagram: https://www.instagram.com/vompictures/?__a=1 age(16, 09, 2005); toggleSocialmedia(); - AOS.init({disable: 'mobile'}); - //AOS.init({disable: true}); + //AOS.init({disable: 'mobile'}); + AOS.init({disable: true}); // hide loadingscreen document.getElementById('loadingScreen').style.display = "none"; }); @@ -391,6 +419,30 @@ } } + function toggleQuestion(){ + if(event.target.tagName == "DIV"){ + if(event.target.getElementsByTagName('p')[0].style.display == "none"){ + event.target.getElementsByTagName('p')[0].style.display = "block"; + event.target.getElementsByTagName('i')[0].style.transform = "rotate(180deg)"; + } + else{ + event.target.getElementsByTagName('p')[0].style.display = "none"; + event.target.getElementsByTagName('i')[0].style.transform = "rotate(0deg)"; + } + } + else if(event.target.tagName == "H3" || event.target.tagName == "I"){ + if(event.target.parentElement.getElementsByTagName('p')[0].style.display == "none"){ + event.target.parentElement.getElementsByTagName('p')[0].style.display = "block"; + event.target.parentElement.getElementsByTagName('i')[0].style.transform = "rotate(180deg)"; + } + else{ + event.target.parentElement.getElementsByTagName('p')[0].style.display = "none"; + event.target.parentElement.getElementsByTagName('i')[0].style.transform = "rotate(0deg)"; + } + } + else console.log("An error occurred while opening this section. Element: {0}", event.target); + } + function checkForm(){ var requiredFields = ['surname-field', 'lastname-field', 'email-field', 'message-text', 'terms']; var errorCount = 0;