-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.45 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.45 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
<!DOCTYPE html>
<html dir="rtl">
<head>
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/canvas.js"></script>
<script type="text/javascript" src="js/jscolor/jscolor.js"></script>
<link rel="stylesheet" type="text/css" href="css/base.css">
<meta charset="utf-8">
<title>Canvas</title>
</head>
<body>
<div id="wrap">
<a href="js/canvas.coffee" target="_blank">מקור קריא</a>
<div id="menubar">
<button id="line">קו</button>
|
<button id="circle">מעגל</button>
| |
<button id="translation">הזזה</button>
<button id="scaling">סילום</button>
<button id="rotation">סיבוב</button>
<button id="shearing-x">גזירה-x</button>
<button id="shearing-y">גזירה-y</button>
<button id="reflection-x">שיקוף-x</button>
<button id="reflection-y">שיקוף-y</button> |
<input class="color" value="#000000">
<button id="undo">בטל</button> |
<button id="boat">
<img src="images/boat.gif">
</button>
<button id="clear">נקה</button>
<span style="float:left;"> | </span>
<span id="coordinates">x,y</span>
<br>
הפעולות נעשות באמצעות לחיצה וגרירת העכבר
</div>
<canvas id="canvas" width="800" height="600"></canvas>
הציור מתעדכן אוטומטית בהתאם לערכים בתיבת הטקסט, ולהיפך.
<textarea id="json"></textarea>
</div>
</body>
</html>