-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 992 Bytes
/
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
<!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">
<title>jsfuck+</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>jsfuck+: write JavaScript without alphabet</h1>
<div id="instant-transpiler">
<textarea id="input" placeholder="// code here..."></textarea>
<textarea id="output" readonly></textarea>
</div>
<div id="buttons">
<input type="button" id="execute" value="execute">
<input type="button" id="rm-ie8" value="NO IE SUP">
<input type="button" id="download" value="download">
</div>
[<a href="https://github.com/fixiabis/jsfuckPlus">Github</a>]<br>
Version requirements: IE8+<br>
Inspired by <a href="http://www.jsfuck.com">JSFuck</a>
<script src="js/main.js"></script>
<script src="js/transpile.js"></script>
</body>
</html>