forked from ayush8010720467/web_whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.09 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
<!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>Web WhiteBoard</title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<style>
html {
scroll-behavior: smooth;
}
div.sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
font-size: 20px;
}
</style>
</head>
<body>
<div class="sticky ">
<button id="clear_complete">Clear</button>
<button onclick="newPage()">new page</button>
<button onclick="saveImage()">save as image</button>
</div>
<!-- <input id="size" placeholder="Enter the size" /> -->
<div id="canvas_div">
<canvas id="white_board" style="border: 1px solid;background: black;"></canvas>
</div>
<a id='test'></a>
<img src="https://visitor-badge.laobi.icu/badge?page_id=ayush8010720467_web_whiteboard" height="1px" width="1px"/>
</body>
<script src="index.js"></script>
</html>