-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathformprocessing.html
More file actions
72 lines (59 loc) · 1.99 KB
/
formprocessing.html
File metadata and controls
72 lines (59 loc) · 1.99 KB
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
<!DOCTYPE html>
<head>
<title>Playing YouTube video on HTML5 canvas</title>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width" />
<style type="text/css">
body {
margin: 0px;
padding: 0px;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<!--<img id="scream" src="static/acat.jpg" alt="The Scream">-->
<p>Canvas:</p>
<canvas id="canvas" >
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
var image = new Image();
image.onload = drawImageActualSize;
image.src = 'static/acat.jpg';
function drawImageActualSize() {
canvas.width = this.naturalWidth;
canvas.height = this.naturalHeight;
ctx.drawImage(this, 0, 0);
ctx.drawImage(this, 0, 0, this.width, this.height);
ctx.beginPath();
ctx.rect(980,149,91,16);
ctx.fillStyle = 'yellow';
ctx.fill();
ctx.lineWidth = 7;
ctx.strokeStyle = 'black';
ctx.stroke();
}
<!--window.onload = function() {-->
<!--var c=document.getElementById("myCanvas");-->
<!--var ctx=c.getContext("2d");-->
<!--var img=document.getElementById("scream");-->
<!--ctx.drawImage(img,170,220);-->
<!--var canvas = document.getElementById('myCanvas');-->
<!--var context = canvas.getContext('2d');-->
<!--context.beginPath();-->
<!--context.rect(188, 50, 200, 100);-->
<!--context.fillStyle = 'yellow';-->
<!--context.fill();-->
<!--context.lineWidth = 7;-->
<!--context.strokeStyle = 'black';-->
<!--context.stroke();-->
<!--Branch No. 980,149,91,16-->
<!--2 Account No. 1137,150,100,15-->
<!--3 0 99 46 2 1144,185,218,18-->
<!--4 FA/PWA NO. 1416,150,101,16-->
<!--5 012 1423,185,94,18-->
<!--}-->
</script>
</body>
</html>