Add components

This commit is contained in:
2025-09-29 11:24:36 +02:00
parent 6d1050c6cb
commit 620d4144b5
3748 changed files with 902194 additions and 0 deletions

32
scroll/index.html Normal file
View File

@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scroll</title>
<link rel="stylesheet" href="/scroll.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<style>
body {
background-color: black;
color: white;
}
</style>
</head>
<body>
<div id="scroll-indicator"></div>
<div style="height: 100vh;">
<h1>Scroll</h1>
</div>
<div style="height: 100vh;" class="snap">
<h2>Hello World</h2>
</div>
<script src="https://static.janishutz.com/libs/jquery/jquery.min.js"></script>
<script src="/scroll.js"></script>
<script>
scrollHint( 4 );
</script>
</body>
</html>