refreshed styling; better overview; projects list and certificates;

This commit is contained in:
2020-03-27 18:35:25 +01:00
parent de59f87336
commit 1d18344f38
50 changed files with 722 additions and 256 deletions

View File

@@ -24,3 +24,24 @@ $("#cad").hover(
$("#cad1").css("display", "block");
$("#cad2").css("display", "none");
});
//Certification show
var modal = document.getElementById("myModal");
var modalImg = document.getElementById("modalImage1");
//var img = document.getElementById("img1");
img.onclick = function () {
modal.style.display = "block";
modalImg.src = this.src;
}
function modalImg() {
modal.style.display = "block";
modalImg.src = this.src;
}
// When the user clicks on <span> (x), close the modal
var span = document.getElementsByClassName("close")[0];
span.onclick = function () {
modal.style.display = "none";
}