-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (86 loc) · 5.29 KB
/
index.html
File metadata and controls
105 lines (86 loc) · 5.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="pages/index/assets/images/favicon.png">
<title>james' stuff</title>
<link rel="stylesheet" href="common/styles/fonts.css">
<link rel="stylesheet" href="common/styles/overlays.css">
<link rel="stylesheet" href="common/styles/force-load-hide.css">
<link rel="stylesheet" href="common/styles/transitions/body-fade.css">
<link rel="stylesheet" href="pages/index/styles/body.css">
<link rel="stylesheet" href="pages/index/styles/main_text/james-text.css">
<link rel="stylesheet" href="pages/index/styles/main_text/james-text-switch.css">
<link rel="stylesheet" href="pages/index/styles/main_text/menu-text.css">
<link rel="stylesheet" href="pages/index/styles/scrolling-text.css">
<link rel="stylesheet" href="pages/index/styles/copyright-text.css">
<link rel="stylesheet" href="pages/index/styles/screencat/cat.css">
<link rel="stylesheet" href="pages/index/styles/cat-jackhammer.css">
<script src="common/scripts/utils.js"></script>
<script>
if (isMobileBrowser()) {
openPage("pages/index_mobile/index_mobile.html", "replace");
}
if (!isHardwareAccelerationEnabled()) {
window.alert("Hardware Acceleration was not detected in your browser. It is highly recommended to enable this for a smooth experience.");
}
</script>
<script src="common/scripts/math.js"></script>
<script src="common/scripts/window.js"></script>
<script src="common/scripts/input.js"></script>
<script src="common/scripts/cursors.js"></script>
<script src="pages/index/scripts/init.js"></script>
<script src="pages/index/scripts/listeners.js"></script>
<script src="pages/index/scripts/text-animate.js"></script>
<script src="pages/index/scripts/text-drag.js"></script>
<script src="pages/index/scripts/screencat/cat.js"></script>
<script src="pages/index/scripts/screencat/init.js"></script>
</head>
<body>
<!-- force these assets to load (cheaty way) -->
<img src="pages/index/assets/images/james_stuff_text/0_animated.gif" class="force-load-hide">
<img src="pages/index/assets/images/james_stuff_text/1_animated.gif" class="force-load-hide">
<img src="pages/index/assets/images/james_stuff_text/2_animated.gif" class="force-load-hide">
<img class="background" id="background">
<img src="pages/index/assets/images/james_stuff_text/0.png" class="james-text james-text--moveCenter"
id="james-text" onclick="playAnimatedText()" onmousedown="dragStart()" onmouseenter="mouseOver()"
onmouseleave="mouseLeave()">
<img src="pages/index/assets/images/buttons/arrow.png"
class="james-text-switch-button james-text-switch-button--left" id="james-text-switch-button-left">
<img src="pages/index/assets/images/buttons/arrow.png"
class="james-text-switch-button james-text-switch-button--right" id="james-text-switch-button-left">
<div class="menu-text" id="menu-text">
<p class="menu-text__text menu-text__text--blur" onclick="pageTransition('pages/links/links.html', 'replace')"
onmouseenter="cursorHandleHover()" onmouseleave="cursorHandleUnhover()">
LINKS
</p>
<p class="menu-text__text menu-text__text--blur"
onclick="openPage('https:\/\/github.com/o7q/james-stuff', 'new')" onmouseenter="cursorHandleHover()"
onmouseleave="cursorHandleUnhover()">SOURCE
</p>
</div>
<div class="james-text-switch-button-reveal-area james-text-switch-button-reveal-area--left"
id="james-text-switch-button-reveal-area" onclick="switchTextVariant(-1)" onmouseenter="cursorHandleHover()"
onmouseleave="cursorHandleUnhover()"></div>
<div class="james-text-switch-button-reveal-area james-text-switch-button-reveal-area--right"
id="james-text-switch-button-reveal-area" onclick="switchTextVariant(1)" onmouseenter="cursorHandleHover()"
onmouseleave="cursorHandleUnhover()"></div>
<img src="pages/index/assets/images/cat/construction/jackhammer.gif" class="cat-jackhammer"
onclick="handleSebastianClick()" onmouseenter="cursorHandleHover()" onmouseleave="cursorHandleUnhover()">>
<img src="pages/index/assets/images/cat/construction/text.png" class="cat-jackhammer-text">
<div class="scrolling-text">
<div class="scrolling-text__text">
welcome traveller. you have arrived at james' stuff. if you are lost,
feeling lonely, or have any questions, please consult our friendly assistant: Sly.
</div>
</div>
<img src="common/assets/images/overlays/noise.png" class="overlay overlay--noise">
<img src="common/assets/images/overlays/crt.png" class="overlay overlay--crt">
<img src="common/assets/images/overlays/screendust.png" class="overlay overlay--screendust">
<img src="common/assets/images/overlays/monitor.png" class="overlay overlay--monitor">
<img src="common/assets/images/overlays/vignette.png" class="overlay overlay--vignette">
<p class="credit-text credit-text--copyright">© 2025 james</p>
<p class="credit-text">Hello. This website was designed & programmed by james.</p>
</body>
</html>