11 lines
356 B
HTML
11 lines
356 B
HTML
<!doctype html>
|
|
<title>Tile Rotation</title>
|
|
<script src="js/app.js"></script>
|
|
<canvas id="canvas" style="width:700px; height: 700px;"></canvas>
|
|
<br>
|
|
<input type="file" id="fileUpload"></input>
|
|
<br>
|
|
<input type="range" id="rotation" min=-180 max=180 value=0 style='width:600px;'></input> <span id="angle">0</span>°
|
|
<br>
|
|
<button id="save">Save</button>
|