-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaint.php
105 lines (96 loc) · 4.77 KB
/
paint.php
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/docs/4.1/assets/img/favicons/favicon.ico">
<title>PaB - Paint</title>
<link rel="canonical" href="https://getbootstrap.com/docs/4.1/examples/product/">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/product.css" rel="stylesheet">
</head>
<body>
<header class="site-header">
<div class="collapse bg-dark" id="navbarHeader">
<div class="container">
<div class="row">
<div class="col-sm-8 col-md-7 py-4">
<h4 class="text-white">About</h4>
<p class="text-muted">Instructions? No, no, just go crazy.</p>
</div>
<div class="col-sm-4 offset-md-1 py-4">
<h4 class="text-white">Contact</h4>
<ul class="list-unstyled">
<li><a href="#" class="text-white">Follow on Twitter</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="navbar navbar-dark bg-dark shadow-sm">
<div class="container d-flex justify-content-between">
<a href="#" class="navbar-brand d-flex align-items-center">
<!-- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2"><path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle></svg> -->
<strong>PYB</strong>
</a>
<a href="#" class="py-2 d-none d-sm-inline-block" color="orange">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="orange"/></svg>
</a>
<a href="#" class="py-2 d-none d-sm-inline-block" color="blue">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="blue"/></svg>
</a>
<a href="#" class="py-2 d-none d-sm-inline-block" color="green">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="green"/></svg>
</a>
<a href="#" class="py-2 d-none d-sm-inline-block" color="white">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="white"/></svg>
</a>
<a href="#" class="py-2 d-none d-sm-inline-block clear-drawing" title="Start again">Clear</a>
<a href="#" class="py-2 d-none d-sm-inline-block save-drawing" title="Upload your drawing">Share</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
</header>
<div class="container" id="content" style="overflow: hidden;">
<canvas id="canvas" width="960" height="600" style="margin-top: 5px;"></canvas>
<div class="onscreen-interface" style="position: absolute; bottom: 20px; right: 20px;">
<a href="#" class="" color="orange">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="orange"/></svg>
</a>
<a href="#" class="" color="blue">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="blue"/></svg>
</a>
<a href="#" class="" color="green">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="green"/></svg>
</a>
<a href="#" class="" color="white">
<svg height="20" width="20"><circle cx="10" cy="10" r="8" stroke="white" stroke-width="2" fill="white"/></svg>
</a>
<a href="#" class="clear-drawing" title="Start again">Clear</a>
<a href="#" class="save-drawing" title="Upload your drawing">Share</a>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-3.5.1.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-3.5.1.min.js"><\/script>')</script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/holder.min.js"></script>
<script src="js/all.js"></script>
<script>
Holder.addTheme('thumb', {
bg: '#55595c',
fg: '#eceeef',
text: 'Thumbnail'
});
</script>
</body>
</html>