From 96acb7ad08a941e51a075b9697ae263e31e6f6df Mon Sep 17 00:00:00 2001 From: etherware-novice <73374039+etherware-novice@users.noreply.github.com> Date: Sat, 31 Aug 2024 17:18:57 -0500 Subject: [PATCH] cool animation on every page load --- _layouts/default.html | 2 ++ assets/css/typeboot.css | 19 +++++++++++++++++++ assets/images/decor/overlay.png | Bin 0 -> 196 bytes assets/js/typeboot.js | 28 ++++++++++++++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 assets/css/typeboot.css create mode 100644 assets/images/decor/overlay.png create mode 100644 assets/js/typeboot.js diff --git a/_layouts/default.html b/_layouts/default.html index da24751..e70b999 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -8,6 +8,7 @@ navbar: topnav {{ page.title }} + @@ -16,6 +17,7 @@ navbar: topnav {% endif %} + {% include background.html %} {% include mplayer.html %} diff --git a/assets/css/typeboot.css b/assets/css/typeboot.css new file mode 100644 index 0000000..977caf1 --- /dev/null +++ b/assets/css/typeboot.css @@ -0,0 +1,19 @@ +#typeboot { + position: fixed; top: 0; left: 0; + width: 200%; height: 100%; + z-index: 100; +} + +#typeboot>*::before { + content: " "; + background-color: white; + height: 100%; + display: inline-block; + position: relative; left: -2rem; + width: 2rem; +} + +#typeboot>* { + height: 30px; + background-color: black; +} diff --git a/assets/images/decor/overlay.png b/assets/images/decor/overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe4e2a308a700bc97c69ab467ee4c2ea53e238e GIT binary patch literal 196 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!pk#?_L`iUdT1k0gQ7S`0VrE{6US4X6f{C7i zo}rO5OZFR}A`?#+$B+p3w-*cr85DR99N?)qw14xXMa=do=WDOVuKUbprtHwbz{teH fA)o+Z*ojN54k%+Z-T77ksGq^p)z4*}Q$iB}!oW3+ literal 0 HcmV?d00001 diff --git a/assets/js/typeboot.js b/assets/js/typeboot.js new file mode 100644 index 0000000..443f461 --- /dev/null +++ b/assets/js/typeboot.js @@ -0,0 +1,28 @@ +const lineSize = 30; +const lineCount = Math.ceil(window.innerHeight / lineSize); +const topScr = document.createElement("div"); + +const slideAnim = [ + { translate: "0 0" }, + { translate: "200vw 0" }, +]; + +const slideTiming = { + duration: (2000 / lineCount), + iterations: 1, + fill: "both", +}; + + +for (let i = 0; i < lineCount; i++) { + let currentLine = document.createElement("div"); + topScr.appendChild(currentLine); + + setTimeout( + () => { currentLine.animate(slideAnim, slideTiming); }, + i * slideTiming.duration + ); +} + +topScr.id = "typeboot"; +document.body.appendChild(topScr);