forked from DDR0/editabled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Editabled - The Editable Image Editor</title>
<link rel="stylesheet" type="text/css" href="black.css">
<script src="jQuery 1.9.1.js"></script>
<script src="jquery.mousewheel.js"></script>
<script src="Underscore 1.4.4.js"></script>
<script src="WorkerConsole.js">//Debug for Chrome.</script>
<script src="Editabled.js"></script>
</head>
<body>
<h1>Editabled</h1>
<p>Version 0.0.1 ・ Hold 'alt' to scroll on canvas. ・ For <a href="help.html">help</a>, mouse over canvas and hit f1.</p>
<br>
<canvas class="image-editor" style="width:100%; height:500px;"></canvas>
<p><em>Fig. 1:</em> Resizable canvas.</p>
<br>
<canvas class="image-editor" style="width:400px; height:400px;"></canvas>
<p><em>Fig. 2:</em> Second, fixed-width canvas.</p>
<hr>
<p>① Editabled requires a recent version of Firefox or Chrome to run. It probably doesn't run on Internet Explorer. ② If your circles are not smooth, try switching from Chrome to Firefox or vice-versa.</p>
<p>©2013 David D. Roberts (DDR)</p>
</body>
</html>