-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.74 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="style.css">
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script src="renderer.js"></script>
<title>TextEffects</title>
</head>
<body>
<div id="main">
<h1 id="title">What would you like to do?</h1>
<button onclick="spam()" id="spam">Spam</button><br>
<button onclick="uniqueSpam()" id="uniqueSpam">Number Spam</button><br>
<button onclick="countdown()" id="countdown">Countdown</button><br>
<button onclick="samTalk()" id="samTalk">Backwards Text</button><br>
<button onclick="weebTalk()" id="weebTalk">Weeb Talk</button><br>
<button onclick="verticalText()" id="verticalText">Vertical Text</button><br>
</div>
<div id="message"></div>
<div id="modeScreen"></div>
<div id="footer">
<p onclick="works()" id="worksbtn">How it Works</p>
<p id="version">v1.0.0</p>
</div>
<div id="works">
<h1>How it Works</h1>
<h3>TextEffects works by outputting text to the selected textbox anywhere on your computer, whether it be in an IM service or others.</h3>
<h4>Try out the different modes, which all have different effects on your text.</h4>
<h4>This program is powerful - if you 1000 in the amount of times output, it WILL output said message a thousand times and it will NOT stop until you close the program.</h4>
<h4>I am not accountable for any loss while using TextEffects.</h4>
<button onclick="works()">Ok!</button>
</div>
</body>
</html>