-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>MT 画板</title>
</head>
<body>
<canvas id="canvas" class="myCanvas" width="800" height="800"></canvas>
<div class="operate">
<button class="btn active" id="paint" onclick="changePaint()">draw</button>
<button class="btn" id="rubber" onclick="changeRubber()">rubber</button>
<button class="btn" onclick="clearContent()">clear</button>
<button class="btn" onclick="downloadImg()">下载</button>
</div>
<div class="colors">
<button class="color active" style="background: #333;"></button>
<button class="color" style="background: #e03434;"></button>
<button class="color" style="background: #ffc645;"></button>
<button class="color" style="background: #59c75d;"></button>
<button class="color" style="background: #3180e2;"></button>
</div>
<div class="lines">
<h4>Lines</h4>
<div class="line" style="height: 3px;"></div>
<div class="line active" style="height: 5px;"></div>
<div class="line" style="height: 8px;"></div>
<div class="line" style="height: 12px"></div>
</div>
<div class="pop-box" style="display: none">
<h2>长按保存图片</h2>
<div class="preview">
<img id="img" src="" alt="">
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>