-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (100 loc) · 4.34 KB
/
index.html
File metadata and controls
109 lines (100 loc) · 4.34 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en" class="sr">
<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">
<link rel="icon" type="image/x-icon" href="media/favicon.png" />
<title>Jack's Stones</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css"/>
<script src="https://unpkg.com/scrollreveal"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Neuton:wght@400;700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="parallax.min.js"></script>
</head>
<body>
<div id="vignette"></div>
<section>
<div class="bg-wrapper" id="scene">
<div class="starwrapper">
<div data-depth="0.2"><img src="media/star.svg" class="starsvg" id="star"></div>
</div>
<div data-depth="0.6"><img src="media/jackstone1.png" id="jackstone3"></div>
<div data-depth="0.8"><img src="media/jackstone1.png" id="jackstone4"></div>
<div data-depth="1"><img src="media/favicon.png" alt="jack" class="jack"></div>
<div data-depth="2"><img src="media/jackstone2.png" id="jackstone1"></div>
<div data-depth="1.5"><img src="media/jackstone2.png" id="jackstone2"></div>
<div data-depth="1.2" class="thing" ><div class="title">Jack's Stones</div></div>
</div>
</section>
<section class="contentsection" id="goals">
<div class="goals mySwiper" data-parallax="scroll" data-z-index="0" data-speed="1.2" data-image-src="media/goals.png">
<div class="swiper-wrapper">
<div class="swiper-slide">
<h1>Goal A</h1>
<div class="idg">Give entertainment to students.</div>
</div>
<div class="swiper-slide">
<h1>Goal B</h1>
<div class="idg">To instill innovation.</div>
</div>
<div class="swiper-slide">
<h1>Goal C</h1>
<div class="idg">To ensure that everyone will <br> have good memories.</div>
</div>
<div class="swiper-slide">
<h1>Goal D</h1>
<div class="idg">Showcase creativity.</div>
</div>
<div class="swiper-slide">
<h1>Goal E</h1>
<div class="idg">Ignite the inner child of the new generation.</div>
</div>
</div>
</div>
<div class="vision">
<h1>Vision</h1>
<p>We aim to revive the public’s interest in traditional FIlipino games whilst helping players discover their full potential by developing grit and critical thinking skills.</p>
</div>
<div class="mission">
<h1>Mission</h1>
<p>To find alternative and creative ways to revive and innovate on traditional Filipino games and to help showcase the inner child of the new generation.
</p>
</div>
</section>
</body>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/parallax/3.1.0/parallax.min.js"></script>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script>$('.goals').parallax({imageSrc: 'media/goals.png'});</script>
<script>
ScrollReveal().reveal('.reveal', { delay: 50, reset: true });
</script>
<script>
var scene = document.getElementById('scene');
var parallaxInstance = new Parallax(scene);
</script>
<script>
var swiper = new Swiper(".mySwiper", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
initialSlide: 3,
spaceBetween: 60,
coverflowEffect: {
rotate: 10,
stretch: 0,
depth: 250,
modifier: 1,
slideShadows: false,
},
pagination: {
el: ".swiper-pagination",
},
});
</script>
</html>