-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.html
40 lines (32 loc) · 979 Bytes
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="noindex, nofollow"/>
<meta name="googlebot" content="noindex, nofollow"/>
<title>canvas实现带笔锋手写笔迹 - JSRUN 驱动</title>
<link rel="stylesheet" type="text/css" href="main.css"/>
</head>
<!-- https://github.com/tclyjy/handwriting-weapp -->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title> canvas 手写毛笔字效果 </title>
<style type="text/css">
#canvasId {
background-color: #FFFFcc;
}
</style>
</head>
<body style="touch-action:none">
<canvas id="canvasId" width="800" height="720"></canvas><br />
<script>
// window.onload = () => {
// }
</script>
</body>
</html>
<script type="application/javascript" src="main.js"></script>
</html>