Skip to content

Commit

Permalink
Better index.html; tweaked splashscreen
Browse files Browse the repository at this point in the history
  • Loading branch information
edloper committed Dec 8, 2024
1 parent 0ca54f1 commit 11188a2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
Binary file added images/titles/missing_link_black.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/titles/missing_link_white.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/titles/missing_link_with_border.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/titles/title6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions javascript/splashscreen.js
Original file line number Diff line number Diff line change
@@ -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);
}

0 comments on commit 11188a2

Please sign in to comment.