-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (90 loc) · 4.33 KB
/
index.html
File metadata and controls
99 lines (90 loc) · 4.33 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0">
<title>Glitcher App — SVG, WebM, and GIF Glitch Generator</title>
<meta name="description" content="Create animated glitch effects and export them as SVG, WebM, or GIF with Glitcher App. Real-time preview and full customization">
<meta name="keywords" content="Glitch Generator, SVG Glitch, WebM Glitch, GIF Glitch, Animated Glitch Effects, Glitcher App, SVG to WebM, SVG to GIF">
<meta name="author" content="metaory">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="canonical" href="https://metaory.github.io/glitcher-app/">
<meta name="color-scheme" content="dark">
<meta name="theme-color" content="#331155" media="(prefers-color-scheme: dark)">
<meta name="theme-color" content="#331155" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#331155">
<meta property="og:type" content="website">
<meta property="og:url" content="https://metaory.github.io/glitcher-app/">
<meta property="og:title" content="Glitcher App — SVG, WebM, and GIF Glitch Generator">
<meta property="og:description" content="Create animated glitch effects and export them as SVG, WebM, or GIF with Glitcher App. Real-time preview and full customization">
<meta property="og:image" content="https://metaory.github.io/glitcher-app/social.jpg">
<meta property="og:site_name" content="Glitcher App">
<meta property="og:locale" content="en_US">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Glitcher App — SVG, WebM, and GIF Glitch Generator">
<meta name="twitter:description" content="Create animated glitch effects and export them as SVG, WebM, or GIF with Glitcher App. Real-time preview and full customization">
<meta name="twitter:" content="https://metaory.github.io/glitcher-app/social.jpg">
<script defer src="ticks.js" data-website-id="436c17c6-f41c-4c25-a5f4-104a4bda47c1"></script>
</head>
<body>
<svg style="position: absolute; width: 0; height: 0;" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="gooey">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 20 -5" result="gooey" />
<feComposite in="SourceGraphic" in2="gooey" operator="atop" />
</filter>
</defs>
</svg>
<main>
<header>
<a target="_blank" href="https://github.com/metaory/glitcher-app">
<img src="/github.svg" alt="GitHub" width="55" height="55">
</a>
<span>Glitcher</span>
</header>
<div id="inputWrap">
<input type="text" id="textInput" placeholder="Text or Image" spellcheck="false" tabindex="-1" />
<input type="file" id="imgInput" accept="image/*" style="display:none" />
<label for="imgInput" id="imgInputLabel" title="Upload image" tabindex="0">
<img src="/image.svg" alt="Upload image" width="40" height="40">
</label>
</div>
<div id="preview"></div>
<div id="controls">
<div class="range-group">
<label>Speed <span>5</span></label>
<input type="range" id="speed" min="1" max="10" step="0.1" value="5" />
</div>
<div class="range-group">
<label>Intensity <span>0.03</span></label>
<input type="range" id="intensity" min="0.01" max="0.1" step="0.001" value="0.03" />
</div>
<div class="range-group">
<label>Separation <span>0.03</span></label>
<input type="range" id="colorSep" min="0.01" max="0.1" step="0.001" value="0.03" />
</div>
<div class="range-group">
<label>Slices <span>8</span></label>
<input type="range" id="slices" min="3" max="15" step="1" value="8" />
</div>
</div>
<div class="download-buttons">
<div class="icon">
<img src="/download.svg" alt="Download" width="36" height="36">
</div>
<div>
<button id="download-svg">SVG</button>
<button id="download-webm">WebM</button>
<button id="download-gif">GIF</button>
</div>
</div>
<div id="version"></div>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>