41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{! vim: set ft=html ts=2 sw=2 et tw=120: !}
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>OO-JS Exercise - Web Atelier 2017</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body onload="init()">
|
|
<h1>
|
|
OO-JS Exercise: Canvas
|
|
</h1>
|
|
<div id="app">
|
|
<div id="left-toolbar" class="toolbar">
|
|
<button id="clear-btn">Clear</button>
|
|
<button id="undo-btn">Undo</button>
|
|
<button id="camera-btn"><i class="fa fa-camera" aria-hidden="true"></i></button>
|
|
</div>
|
|
<canvas id="canvas" width="600" height="400"></canvas>
|
|
<div id="brush-toolbar" class="toolbar">
|
|
<!-- Brushes buttons go here (programmatically). Each button should be a <button> element -->
|
|
</div>
|
|
</div>
|
|
<h2>Favourites</h2>
|
|
<div id="favourites">
|
|
{#favs}
|
|
{>"favourite_partial" name=name dataURL=dataURL _id=_id bookmarked=bookmarked details="true" /}
|
|
{/favs}
|
|
</div>
|
|
<script src="scripts/brushes.js"></script>
|
|
<script src="scripts/undo.js"></script>
|
|
<!-- <script src="scripts/clock.js"></script> -->
|
|
<script src="scripts/app.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
|
|
</html>
|