Skip to content

Commit 54aeb59

Browse files
committed
Added favicon
1 parent f5ad089 commit 54aeb59

File tree

6 files changed

+30
-5
lines changed

6 files changed

+30
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
favicon/*

css/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favicon.ico

57.2 KB
Binary file not shown.

index.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@
99
<title>Kevin D. – Intro</title>
1010
</head>
1111
<body
12-
class="d-flex flex-column justify-content-center align-items-center text-center bg-light w-100 h-100"
12+
class="position-relative d-flex flex-column justify-content-center align-items-center text-center bg-light w-100 h-100"
1313
>
14+
<div id="spinner" class="spinner-border text-dark" role="status">
15+
<span class="sr-only">Loading...</span>
16+
</div>
1417
<main
15-
class="d-flex flex-column justify-content-center align-items-center text-center w-100 h-100 p-1"
18+
class="invisible d-flex flex-column justify-content-center align-items-center text-center w-100 h-100 p-1"
1619
>
1720
<h1 class="display-1 mb-3 text-nowrap">Kévin Ducongé</h1>
1821
<ul class="list-inline">

script.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Wait for all the images to be loaded
2+
window.addEventListener("load", () => {
3+
console.debug("window loaded");
4+
5+
// Hide loading spinner
6+
document.querySelector("#spinner").classList.add("d-none");
7+
8+
// Start the fadein animation on main
9+
let main = document.querySelector("main");
10+
main.classList.add("fadein");
11+
main.classList.remove("invisible");
12+
});

scss/main.scss

+11-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@
1818
}
1919
}
2020

21-
main {
22-
animation: fadein 2s ease-out;
21+
.fadein {
22+
animation: fadein 2s ease-out forwards;
23+
}
24+
25+
#spinner {
26+
position: absolute;
27+
margin: auto;
28+
top: 0;
29+
left: 0;
30+
bottom: 0;
31+
right: 0;
2332
}

0 commit comments

Comments
 (0)