-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (80 loc) · 3.93 KB
/
about.html
File metadata and controls
87 lines (80 loc) · 3.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About Wesley Hack Club</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta http-equiv="cache-control" content="Private" />
<meta name="description" content="The homepage for Wesley HackClub.">
<meta name="keywords" content="Wesley,HackClub, Wesley HackClub">
<link rel="canonical" href="https://wesley.hackclub.com/">
<link rel="stylesheet" href="theme.css">
<script src="https://unpkg.com/lenis@1.1.20/dist/lenis.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="/very_important.js"></script>
<script>
// Initialize Lenis
const lenis = new Lenis({
autoRaf: true,
});
// Listen for the scroll event and log the event data
lenis.on('scroll', (e) => {
});
// Initialize GSAP animations
window.onload = function() {
gsap.fromTo(".title", { y: -50 }, { duration: 1, y: 0, opacity: 1, ease: "power2.out"});
gsap.fromTo(".members", { y: -50 }, { duration: 1, y: 0, opacity: 1, ease: "power2.out", delay: 0.5 });
gsap.fromTo("nav ul li, nav ul span", { y: -50 }, { duration: 1, y: 0, opacity: 1, stagger: 0.2, ease: "power2.out", delay: 1 });
if (window.innerWidth < 768) {
document.getElementById('smallScreenModal').style.display = 'block';
}
};
function closeModal() {
document.getElementById('smallScreenModal').style.display = 'none';
}
</script>
<link rel="stylesheet" href="https://unpkg.com/lenis@1.1.20/dist/lenis.css">
<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=Pixelify+Sans:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<section class="section1">
<div class="topbar">
<div class="typing-effect"></div>
<div class="members">Member Count: 6ish</div>
<div class="title">Wesley Hack Club<span class="cursor">|</span></div>
<header class="header">
<nav>
<ul>
<li><a href="index.html">Home </a></li>
<span>|</span>
<li><a href="about.html">About</a></li>
<span>|</span>
<li><a href="mailto:kwiecien-fisherm@wesley.wa.edu.au">Contact</a></li>
</ul>
</nav>
</header>
</div>
</section>
<section class="running fade-in">
<div class="info" style="border: none; font-size: 5vh; font-weight: bold; text-decoration: underline; margin-top: 5vh;">What are we doing?</div>
<div class="info">Design a PCB, get the manufacturing process paid for</div>
<div class="info">Training for CTF (Capture The Flag) competitions some Saturdays. Contact <a href="mailto:lisl.mcguire@wesley.wa.edu.au">lisl.mcguire@wesley.wa.edu.au</a> to get started.</div>
<div class="info">Any other YSWS (you ship we ships) that Hack Club is currently running. Check them out here: <a href="https://ysws.hackclub.com" target="_blank">ysws.hackclub.com</a></div>
<div class="info">Any hardware or software project you want!</div>
</section>
<br>
<br>
<br>
<div id="smallScreenModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<p>This website is not designed for mobile devices because the developers are lazy. User error, get a laptop.</p>
</div>
</div>
<footer>
<p> © <script>document.write(new Date().getFullYear())</script> Wesley Hack Club</p>
</footer>
</body>
</html>