-
Notifications
You must be signed in to change notification settings - Fork 2
/
index8.html
51 lines (43 loc) · 1.08 KB
/
index8.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
40
41
42
43
44
45
46
47
48
49
50
51
<!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>Document</title>
<style>
html,
body {
margin: 0;
padding: 0;
}
button {
position: absolute;
top: 0;
right: 0;
font-size: 100px;
}
</style>
</head>
<body>
<canvas id="canvas2" width="1000" height="800"></canvas>
<script>
var canvasDOM = document.getElementById("canvas2")
var ctx = canvasDOM.getContext('2d')
var posX = 0
var w = 1000
var h = 800
var score = 0;
function degsToRad(degrees) {
return degrees * Math.PI / 180
}
// draw a simple rectangle, but scale it.
ctx.save();
ctx.scale(100, 3);
ctx.fillRect(1, 10, 10, 10);
ctx.restore();
// ctx.scale(0.5, 2);
ctx.fillRect(20, 40, 10, 10);
</script>
</body>
</html>