-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 800 Bytes
/
index.html
File metadata and controls
27 lines (24 loc) · 800 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=360, initial-scale=1.0">
<title>App Icon Bad Apple</title>
<link rel="icon" id="badapple">
</head>
<body>
<h1>TIP YOUR CLICK</h1>
<h4>You'll need to get 30 CPS.</h4>
<script>
CLIP_FRAMES = 6571
CLIP_LENGTH = 219.06666666666666666666666666
badapple = document.getElementById("badapple")
frame = 0
document.body.onclick = function() {
frame += 1
badapple.href = "https://raw.githubusercontent.com/pikapower9080/bad-apple-frames/main/frames/" + String(frame).padStart(3, "0") + ".jpg"
}
</script>
</body>
</html>