-
Notifications
You must be signed in to change notification settings - Fork 0
/
infopage.html
62 lines (53 loc) · 3.97 KB
/
infopage.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./home.css">
<link rel="stylesheet" href="./info.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery.ripples/dist/jquery.ripples-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.10.4/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
<link rel="shortcut icon" href="./Media/favicon.ico" type="image/x-icon">
<title>Information Page</title>
</head>
<body>
<img id="foam" src="./Media/HomeSprites/Oceanfoam.svg" alt="Foam" style="width: 100%; position: absolute; top: 0; left: 0;"/>
<img id="number-overlay" src="./Media/InfoSprites/02PageOverlay.svg" alt="Number 02 Overlay" />
<img id="left-overlay-image" src="./Media/InfoSprites/HomeSideOverlay.svg" alt="Left Overlay" />
<img id="full-page-decorative-top" src="./Media/InfoSprites/omgitsmept2.svg" alt="Full Page Decorative Top" />
<img id="information-box" src="./Media/InfoSprites/InformationBox.PNG" alt="I mean.. its an information box!" />
<img id="Avatar-Information" src="./Media/InfoSprites/AvatarOverlay.PNG" alt="Me but like.. smaller" />
<img id="Cool-Blue-Thingy" src="./Media/InfoSprites/CoolBlueThingy.svg" alt="Cool little blue lights :)" />
<img id="page-wide-overlay" src="./Media/InfoSprites/mebutwhite.svg" alt="Page Wide Decorative" />
<img id="gradient-overlay" src="./Media/HomeSprites/imagegradient.png" alt="Gradient Overlay" />
<div id="info-text-container">
<div id="info-text-content">
<p>Hello!! Welcome to my portfolio page. My name is Alan Sanchez, a young programmer and artist with a love for rhythm and RPG games. Im a Junior at Mountain Ridge High School, and a first year in West-MEC Northeast Campus in the coding class. I started coding when I was around 8-9, the same time I got my first dinky laptop. Ever since then, Ive always had a passion for programming and to one day work at a video-game company, like Valve! Along with my passion to program and tinker with electronics, I also started to grow a passion for art! My older brother used to draw little comics when I was younger, and thanks to other friends helping me out, I started improving and focusing my art skills, which this page is littered with. I wanted this portfolio to get the same look as the Persona 3 Reload menu UI, which I am a huge fan of. Like mentioned before, I have a love for rhythm games, I'd say I'm pretty good at them. Same with FPS and RPG games! One fact I always like to share is that I am pretty young for my position, being both one of the youngest juniors in my school and the youngest first year in my class, but I won't let that stop me. Feel free to look around, and thank you for visiting my portfolio. <3</p>
</div>
</div>
<div id="info-text-scrollbar" class="custom-scrollbar">
<div id="info-text-thumb" class="custom-thumb"></div>
</div>
<a href="./index.html" id="back-to-home">
Back
</a>
<button id="toggle-effects">Toggle Effects</button>
<div class="controls">
<label class="switch">
<input type="checkbox" id="toggleMusic">
<span class="slider round"></span>
</label>
<button id="prevSong" class="song-control">Prev</button>
<button id="nextSong" class="song-control">Next</button>
<button id="startAudio" class="song-control">Start Audio</button>
</div>
<div id="nowPlaying">Now playing...</div>
<canvas id="visualizer"></canvas>
<audio id="backgroundMusic" loop></audio>
<script src="./home.js" defer></script>
<script src="./info.js" defer></script>
</body>
</html>