-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.35 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="zh-Hans">
<link rel="stylesheet" href="./style.css">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--获取设备宽度-->
<title>Canvas画板</title>
</head>
<body>
<canvas id="xxx" width=3 00px height=3 00px></canvas>
<div id=a ctions class="actions">
<svg id="pen" class="active icon" aria-hidden="true">
<use xlink:href="#icon-pen"></use>
</svg>
<svg id="eraser" class="icon" aria-hidden="true">
<use xlink:href="#icon-eraser"></use>
</svg>
<svg id="clear" class="icon" aria-hidden="true">
<use xlink:href="#icon-delete"></use>
</svg>
<svg id="download" class="icon" aria-hidden="true">
<use xlink:href="#icon-download"></use>
</svg>
</div>
<ol class="colors">
<li id="black" class="black active"></li>
<li id="red" class="red"></li>
<li id="green" class="green"></li>
<li id="blue" class="blue"></li>
</ol>
<ol class="sizes">
<li id="thin" class="thin"></li>
<li id="thick" class="thick"></li>
</ol>
</body>
<script src="./main.js"></script>
<script src="//at.alicdn.com/t/font_712697_sdg7lrkzbn.js"></script>
<!--iconfont路径没有协议,所以要选好http协议后使用-->
</html>