Add components
This commit is contained in:
32
scroll/index.html
Normal file
32
scroll/index.html
Normal 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>
|
Reference in New Issue
Block a user