From a0485a3f6ccd9aa8c66e75cb0cad3960d55746a4 Mon Sep 17 00:00:00 2001 From: Robert Jeutter Date: Mon, 30 Mar 2020 11:28:48 +0200 Subject: [PATCH] added nodejs-boilerplate; modalImgShow() fully integrated --- index.html | 213 +++++++++++++++++++++++++++++------------------------ js/cert.js | 8 +- 2 files changed, 120 insertions(+), 101 deletions(-) diff --git a/index.html b/index.html index 209d3c0..2bdc1ae 100644 --- a/index.html +++ b/index.html @@ -281,7 +281,7 @@
-

Projectmanagement

+

Project management

Working with a team you get to know that nobody has that much of a overview what tools you can use to work and participate. This bilingual sheet is a short overview of tools and programms to make your cooperations and projects easier.

@@ -305,6 +305,19 @@

+
+
+

NodeJS Boilerplate

+
+
+

Start your NodeJS Project today with my simple but structured boilerplate. Don't get anything confused with this organized project map and documentation.

+
+
+ +
+
+
+

Discord Bot

@@ -320,252 +333,258 @@
+

Certifications

-
- +
+
Full Stack WebDev
-
- +
+
Responsive WebDesign
-
- +
+
HTML 5 Champion
-
- +
+
Advanced SQL Analytics
-
- +
+
MySQl for Data Analysis
-
- +
+
Basic HTML
-
- +
+
CakePhp
-
- +
+
Dynamic Web Forms with validation
-
- +
+
GitHub Grundlagen
-
- +
+
HTML 5
-
- +
+
HTML Bootcamp
-
- +
+
Web Development Crash Course
-
- +
+
HTML5 and CSS3
-
- +
+
InfiniteScroll AJAX
-
- +
+
Landing Page Hacks
-
- +
+
HTML5 and CSS3 by Coding
-
- +
+
Learn HTML5
-
- +
+
Make Ecommerce Website Front-End
-
- +
+
PHP&MySQL
-
- +
+
PSD Frontend
-
- +
+
Telegram Bot with Python
-
- +
+
XHTML-01
-
- +
+
XHTML-02
-
- +
+
XHTML-03
-
- +
+
XHTML-04
-
- +
+
XHTML-05
-
- +
+
XHTML-06
-
- +
+
XHTML-07
-
- +
+
Yii PHP Framework
-
- +
+
Amazon FBA
-
- +
+
eBay Dropshipping
-
- +
+
Exel 2010 Productivity
-
- +
+
Godot Game Engine
-
- +
+
Google Sheets
-
- +
+
GoogleDocs
-
- +
+
Grundlagen Vermögensverwaltung
-
- +
+
Landschaftsfotografie
-
- +
+
Microsoft Exel Pivot
-
- +
+
Startup & Business
-
- +
+
Visual Studio Code Hacks
-
- +
+
Robocup 2014
-
- +
+
Robocup 2015
-
- +
+
Robocup 2016
-
- +
+
Robotik
-
- +
+
Mechatronik Seminar
-
- +
+
146. Jugend Presse Kongress
-
- +
+
150. Jugend Presse Kongress
-
- +
+
Multimedia Workshop
diff --git a/js/cert.js b/js/cert.js index df75dab..126d265 100644 --- a/js/cert.js +++ b/js/cert.js @@ -2,13 +2,13 @@ var modal = document.getElementById("myModal"); var modalImg = document.getElementById("modalImage1"); -function modalImg() { +function myModalShowImg(picture) { modal.style.display = "block"; - modalImg.src = this.src; + modalImg.src = picture.getElementsByClassName("cert-img")[0].src; } -// When the user clicks on (x), close the modal -var span = document.getElementsByClassName("close")[0]; +// When the user clicks on (x) or the picture, close the modal +var span = document.getElementsByClassName("close")[0] && document.getElementsByClassName("modal-content")[0]; span.onclick = function () { modal.style.display = "none"; }; \ No newline at end of file