-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- favicon -->
<link rel="shortcut icon" href="https://avatars2.githubusercontent.com/u/38456916?s=460&u=7db06c46c3c24a2cf19cb793aa8fbb24aedf18d0&v=4" type="image/x-icon">
<!-- fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- myStyle -->
<link rel="stylesheet" href="style.css">
<!-- myScript -->
<script defer src="js/domSelect.js"></script>
<script defer src="js/main.js"></script>
<title>Text Glitch</title>
</head>
<body>
<div class="controls">
<div class="btn-wrap">
<button id="changeText">Change Text</button>
<button id="add_BG">add BG</button>
<button id="rmv_BG">remove BG</button>
</div>
<div class="blend-modes-wrap">
<h4>Blend Modes</h4>
<div class="blend-modes">
<div>
<label for="red">Red</label>
<select name="Red" id="red"></select>
</div>
<div>
<label for="green">Green</label>
<select name="Green" id="green"></select>
</div>
<div>
<label for="blue">Blue</label>
<select name="Blue" id="blue"></select>
</div>
</div>
</div>
</div>
<div class="glitch-strength-wrap">
<h4>Glitch Strength <span id="strength"></span></h4>
<input type="range" value="4" min="0" max="20" id="glitch_strength">
</div>
<div class="text-wrap">
<div class="text">
<h1 class="red">Glitch</h1>
<h1 class="green">Glitch</h1>
<h1 class="blue">Glitch</h1>
</div>
</div>
<div class="bg"></div>
<div class="text-modal">
<div class="inner-modal">
<input type="text" id="glitch_text" placeholder="Change Text">
<div class="font-styles">
<div class="font-caps">
<button id="uppercase">AA</button>
<button id="capitalize">Aa</button>
<button id="lowercase">aa</button>
</div>
</div>
</div>
<span class="close">×</span>
</div>
<footer>
<a href="https://github.com/Golobro" title="Visit Golobro's github" target="_blank">
<i class="fab fa-github fa-2x"></i>
</a>
<br>
Golobro © 2021
</footer>
</body>
</html>