Index

joshstock.in / fb9522e

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
21214 Oct 2024 22:51328427crc snow plow tempJosh Stockin131G

Blob @ joshstock.in / site / static / js / banner_scroll.js

application/javascript343 bytesdownload raw
1let banner = document.getElementsByClassName("banner-image")[0];
2function scroll() {
3 banner.style["background-position"] = "50% " + (30 * (1 - document.body.scrollTop * document.body.clientWidth / document.body.clientHeight / document.body.clientHeight)).toString() + "%";
4};
5
6scroll();
7document.addEventListener('DOMContentLoaded', scroll);
8