-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (61 loc) · 4.29 KB
/
index.html
File metadata and controls
71 lines (61 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>JSSC — JavaScript String Compressor</title>
<meta name="title" content="JSSC — JavaScript String Compressor" />
<meta name="description" content="Open-source, self-validating, lossless string compression algorithm designed specifically for JavaScript" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jssc.js.org/" />
<meta property="og:title" content="JSSC — JavaScript String Compressor" />
<meta property="og:description" content="Open-source, self-validating, lossless string compression algorithm designed specifically for JavaScript" />
<meta property="og:image" content="https://jssc.js.org/jssc-banner-logo.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://jssc.js.org/" />
<meta property="twitter:title" content="JSSC — JavaScript String Compressor" />
<meta property="twitter:description" content="Open-source, self-validating, lossless string compression algorithm designed specifically for JavaScript" />
<meta property="twitter:image" content="https://jssc.js.org/jssc-banner-logo.png" />
<meta name="keywords" content="compressor, compress, compression, decompress, decompressor, decompression, string, text, data, javascript, typescript, js, ts, deno, jsx, tsx, jssc, strc, lossless, high, ratio, ratios, multilingual, character, encoding, encodings, json, object, english, spanish, portuguese, french, german, russian, ukrainian, belarusian, kazakh, hindi, bengali, japanese, hiragana, katakana, telugu, marathi, unicode, ascii, umd, module, open-source, open, source, node, amd, browsers, browser, client-side, client, side, server-side, server, frontend, backend, fullstack, rle, 2025, 2026">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="theme-color" content="#efd5ff">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/justc"></script>
<script src="https://unpkg.com/strc"></script>
<script src="https://unpkg.com/animejs/dist/bundles/anime.umd.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100..900&family=Rubik+Mono+One&family=Rubik:ital,wght@0,300..900;1,300..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<script>
document.documentElement.style.opacity = '0';
</script>
</head>
<body>
<div id="app">
<demo-nav></demo-nav>
<section class="hero" id="hero">
<img src="/jssc-large.png" class="logo" id="logo" style="scale: 1.5; top: 50%; translate: 0px -50%; position: absolute;" alt="JSSC" />
</section>
<section class="demo" id="demo" m="c">
<section class="text" id="1st">
<textarea id="input" placeholder="Enter text to compress…"></textarea>
<textarea id="output" placeholder="Compressed result" readonly style="resize: none; min-height: stretch; max-height: 40vh"></textarea>
</section>
<section class="bin" id="bin">
<div id="inp"></div>
<div id="out"></div>
</section>
</section>
<button id="run" class="glass">Compress</button>
<footer id="c">Copyright © 2025-2026 JustDeveloper</footer>
</div>
<lqd-gls></lqd-gls>
<script type="module" src="/src/main.ts"></script>
<script>
if (CSS && 'paintWorklet' in CSS) CSS.paintWorklet.addModule('https://unpkg.com/smooth-corners');
else document.documentElement.setAttribute('data-pw','false');
</script>
</body>
</html>