-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>我的画板</title>
<!-- <link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"> -->
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<canvas id="canvas"></canvas>
<div id="options">
<ul id="color" class="active">
<li id="black" class="active"></li>
<li id="green"></li>
<li id="red"></li>
<li id="blue"></li>
</ul>
<ul id="thickness" class="active">
<li id="thin" class="active"></li>
<li id="middle"></li>
<li id="thick"></li>
</ul>
<ul id="actions">
<li id="pen" class="active"><i class="fa fa-pencil active" aria-hidden="true"></i></li>
<li id="eraser"><i class="fa fa-eraser" aria-hidden="true"></i></li>
<li id="clearall"><i class="fa fa-trash"></i></li>
<li id="save"><i class="fa fa-floppy-o" aria-hidden="true"></i></li>
</ul>
</div>
<script src="main.js"></script>
</body>
</html>