-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·34 lines (28 loc) · 929 Bytes
/
index.html
File metadata and controls
executable file
·34 lines (28 loc) · 929 Bytes
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Title</title>
<!--[if IE]>
<script src="../../SomeoneModel/excanvas/html5.js" type="text/javascript"></script><![endif]-->
<!--[if IE]>
<script src="../../SomeoneModel/excanvas/excanvas.js" type="text/javascript"></script><![endif]-->
<!--<script src="../../SomeoneModel/jquery/jquery-1.12.4.js" type="text/javascript"></script>-->
<script src="ImageTools.js"></script>
</head>
<body>
<div id="canvasDiv" style="-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit浏览器*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*早期浏览器*/
user-select: none; "></div>
<button>灰度</button>
</body>
<script>
var imageTools = new ImageTools(document.getElementById('canvasDiv'), {
hasBorder: true
, canvasWidth: 400
, canvasHeight: 400
});
</script>
</html>