-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.12 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Horuschild - Project</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://api.fontshare.com/css?f[]=clash-display@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p>// scroll to see more</p>
<div class="container">
<div class="block block-1">
<h1>heligoland.</h1>
</div>
<div class="block block-2">
<h1>prypyat.</h1>
</div>
<div class="block block-3">
<h1>defected.</h1>
</div>
<div class="block block-4">
<h1>quatro.</h1>
</div>
</div>
<script src="index.js"></script>
<script>
var blocks = document.getElementsByClassName("block");
var container = document.getElementsByClassName("container");
var hs = new HorizontalScroll.default({
blocks: blocks,
container: container,
isAnimated: true,
springEffect: 0.8,
});
</script>
</body>
</html>