-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandomizer.html
More file actions
107 lines (88 loc) · 4.1 KB
/
randomizer.html
File metadata and controls
107 lines (88 loc) · 4.1 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
106
107
<!DOCTYPE html>
<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TEiN Randomizer</title>
<meta name="description" content="The End is Nigh Randomizer Official Webpage">
<meta name="keywords" content="The End is Nigh,Modding,TEIN,Mod,Manual,Edmund McMillen,Tyler Glaiel,Random,Randomizer">
<meta name="author" content="Uzerro">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="/images/randomizer/icon.ico">
<link rel="stylesheet" type="text/css" href="tein.css">
<script type="text/javascript" src="/slideshow.js"></script>
</head>
<body>
<div class="container">
<div class="contentback"></div>
<div class="header">
<h1 class="heading">The End is Nigh Randomizer</h1>
</div>
<div class="header">
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="/index.html">Home</a></li>
<li><a href="/gon-parsers.html">GON Parsers</a></li>
<li><a href="/game-dev.html">Game Dev</a></li>
<li><a href="/blog/blog.html">Blog Posts</a></li>
</ul>
</div>
<hr>
<div class="content">
<h2 class="center">About</h2>
<p>
<img src="/images/randomizer/icon.png" alt="Randomizer Icon" id="randoicon">
The End is Nigh Randomizer is a nifty little program that shuffles around all the levels in the game and creates a new world for you to play through.
It is also capable of randomizing the palettes, tilesets, overlays, particle effects, shaders, and more!
Every playthrough will give you a unique experience.
</p>
<hr>
<h2 class="center">Download</h2>
<p>You can find the project on GitHub <a href="https://github.com/Stuart-Mouse/TEiN-Randomizer">here</a>.<br/>Alternatively, you can download the program directly <a href="https://github.com/Stuart-Mouse/TEiN-Randomizer/releases/download/0.9.2/Release092.zip">here</a>.</p>
<hr>
<h2 class="center">Screenshots</h2>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<img src="/images/randomizer/sc4.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc6.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc10.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc17.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc19.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc3.png" style="width:100%">
</div>
<div class="mySlides fade">
<img src="/images/randomizer/sc5.png" style="width:100%">
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="step_slides(slideshow, -1)">❮</a>
<a class="next" onclick="step_slides(slideshow, 1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot active" onclick="set_slide(slideshow, 0)"></span>
<span class="dot active" onclick="set_slide(slideshow, 1)"></span>
<span class="dot active" onclick="set_slide(slideshow, 2)"></span>
<span class="dot active" onclick="set_slide(slideshow, 3)"></span>
<span class="dot active" onclick="set_slide(slideshow, 4)"></span>
<span class="dot active" onclick="set_slide(slideshow, 5)"></span>
<span class="dot active" onclick="set_slide(slideshow, 6)"></span>
</div>
<script>
var slideshow = make_slideshow("mySlides", "dot");
</script>
</div>
</div>
</body>
</html>