-
Notifications
You must be signed in to change notification settings - Fork 0
/
day3.html
30 lines (29 loc) · 875 Bytes
/
day3.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
<html>
<head>
<title>Day 3 Code</title>
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src = 'day3.js'></script>
<style>
#test{
border:1px solid #555555;
background-color:#F0FBC8;
border-radius:5px;
}
</style>
</head>
<body>
<h2>Canvas Experiments</h2>
<p>
<canvas id= 'test' width='200' height='200'></canvas>
<div>
<button onclick='test_clear()'>Clear</button>
<button onclick='test_line()'>Line</button>
<button onclick='test_box()'>Box</button>
<button onclick='test_smiley()'>Smile</button>
<button onclick='test_rect()'>Rectangles</button>
<button onclick='test_text()'>Text</button>
<button onclick='test_mouse()'>Mouse</button>
</div>
</p>
</body>
</html>