-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspritesheetsMonsterTestPage.html
More file actions
41 lines (36 loc) · 1.06 KB
/
spritesheetsMonsterTestPage.html
File metadata and controls
41 lines (36 loc) · 1.06 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
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Lien du fichier CSS -->
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<title>Sprite Sheet Test Page</title>
</head>
<body style="background: #96ffc1">
<nav>
<ul>
<li>
<a href="spritesheetsJuliaTestPage.html">Julia</a>
</li>
<li>
<a href="spritesheetsMarieTestPage.html">Marie</a>
</li>
</ul>
</nav>
<h1 style="position: absolute; top: 0; right: 0">
Scroll to animate!
</h1>
<main>
<div class="container">
</div>
</main>
<br>
<br>
<br>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.5/ScrollTrigger.min.js"></script>
<script src="script/script.js"></script>
</body>
</html>