-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (115 loc) · 5.36 KB
/
index.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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div id="__next">
<main class="main-container">
<div class="content">
<img src="./images/balackburn_icon.png" alt="balackburn icon" class="balackburn__icon">
<h2 class="app__name">balackburn.github.io</h2>
<p class="app__description">Welcome to Balackburn Github projects pages!</p>
<a href="https://github.com/Balackburn/" class="github-btn"> <img src="images/github-logo.png"
alt="GitHub logo">
<div class="text">
<span class="button-text">See me on GitHub</span>
<span class="button-subtext">Balackburn</span>
</div>
</a>
<a href="altstore://source/?url=https://balackburn.github.io/apps.json" class="altstore-btn"> <img src="images/altstore-logo.png"
alt="Altstore logo">
<div class="text">
<span class="button-text">Add to Altstore</span>
<span class="button-subtext">Or Sidestore</span>
</div>
</a>
<div class="projects">
<h1 style="
padding-bottom: 55px;
">Featured</h1>
<div class="project-list" id="project2">
<div class="project">
<img src="./images/youtube_icon.png" alt="youtube icon" class="icon">
<h3>YTLitePlus</h3>
<div class="flex">
<p>
Youtube with YTLite (by <strong><a href="https://github.com/dayanch96"
class="blue-link">@dayanch96</a></strong>) & much more
</p>
<a href="./YTLitePlus/" target="_blank">
<button class="more-details-button">
<p class="button-text">More details</p>
<p class="button-subtext">GitHub Page</p>
</button>
</a>
</div>
</div>
<div class="project">
<img class="app__logo icon" alt="App logo">
<h3>Apollo</h3>
<div class="flex">
<p>
An Altstore source and website for ApolloPatcher (by <strong><a
href="https://github.com/ichitaso" class="blue-link">@ichitaso</a></strong>)
</p>
<a href="./Apollo/" target="_blank">
<button class="more-details-button">
<p class="button-text">More details</p>
<p class="button-subtext">GitHub Page</p>
</button>
</a>
</div>
</div>
</div>
<h1 style="
padding-bottom: 55px;
">Others</h1>
<div class="project-list">
<div class="project">
<img src="./images/youtube_icon.png" alt="youtube icon" class="icon">
<h3>CercubePlusExtra</h3>
<div class="flex">
<p>
A modified version of Cercube (by <strong><a href="https://github.com/majd"
class="blue-link">@majd</a></strong>) supercharged with +15 tweaks
</p>
<a href="./CercubePlusExtra/" target="_blank">
<button class="more-details-button">
<p class="button-text">More details</p>
<p class="button-subtext">GitHub Page</p>
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</body>
<script>
const TOTAL_ICONS = 156;
let randomIndex;
function getRandomIcon() {
randomIndex = Math.floor(Math.random() * TOTAL_ICONS);
return `./images/apollo_icons/icon_${randomIndex}.webp`;
}
function updateIcon() {
const logoElements = document.getElementsByClassName('app__logo');
for (let i = 0; i < logoElements.length; i++) {
logoElements[i].src = getRandomIcon();
}
}
function startAnimation() {
setInterval(updateIcon, 400); // Change the icon every 400 milliseconds
}
window.addEventListener('load', () => {
updateIcon();
startAnimation();
});
</script>
</html>