diff --git a/images/titles/missing_link_black.jpg b/images/titles/missing_link_black.jpg new file mode 100644 index 0000000..159b18c Binary files /dev/null and b/images/titles/missing_link_black.jpg differ diff --git a/images/titles/missing_link_white.jpg b/images/titles/missing_link_white.jpg new file mode 100644 index 0000000..7024b58 Binary files /dev/null and b/images/titles/missing_link_white.jpg differ diff --git a/images/titles/missing_link_with_border.jpg b/images/titles/missing_link_with_border.jpg new file mode 100644 index 0000000..ac21580 Binary files /dev/null and b/images/titles/missing_link_with_border.jpg differ diff --git a/images/titles/title6.jpg b/images/titles/title6.jpg new file mode 100644 index 0000000..34e929c Binary files /dev/null and b/images/titles/title6.jpg differ diff --git a/javascript/splashscreen.js b/javascript/splashscreen.js new file mode 100644 index 0000000..5b4ecf9 --- /dev/null +++ b/javascript/splashscreen.js @@ -0,0 +1,16 @@ +function drawSplashscreen() { + const $splash = $("#splashscreen"); + $("#splashscreen").show(); + var i = 1; + function animation() { + $splash.show(); + $splash.css({opacity: i}); + i -= 0.02; + if (i <= 0) { + $splash.hide(); + } else { + setTimeout(animation, 20); + } + } + setTimeout(animation, 1000); +}