-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 924 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Intersection Observer - Parallax</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="text">
<h1>Intersection Observer - Parallax</h1>
<p>Scroll down.... ↓</p>
<p>Completed without event listener...</p>
</div>
<div class="container">
<div class="js-parallax">
<span class="_shape _shape1" data-parallax="-8"></span
><span class="_shape _shape2" data-parallax="8"></span
><span class="_shape _shape3" data-parallax="-9"></span>
</div>
<div class="js-parallax">
<span class="_shape _shape4" data-parallax="-11"></span
><span class="_shape _shape5" data-parallax="7"></span
><span class="_shape _shape6" data-parallax="3"></span>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>