box-o-sand/mdn-breakout/index.html

40 lines
767 B
HTML
Raw Normal View History

2017-01-01 03:51:22 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>MDN Breakout</title>
<style>
* { padding: 0; margin: 0; }
canvas { background: #eee; display: block; margin: 0 auto; }
</style>
</head>
<body>
<canvas id="myCanvas" width="480" height="320"></canvas>
<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
2017-01-01 04:00:16 +00:00
var x = canvas.width/2;
var y = canvas.height-30;
var dx = 2;
var dy = -2;
2017-01-01 03:51:22 +00:00
2017-01-01 04:00:16 +00:00
function drawBall() {
ctx.beginPath();
ctx.arc(x, y, 10, 0, Math.PI*2);
ctx.fillStyle = "#0095DD";
ctx.fill();
ctx.closePath();
}
2017-01-01 03:51:22 +00:00
2017-01-01 04:00:16 +00:00
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
drawBall();
x += dx;
y += dy;
}
2017-01-01 03:51:22 +00:00
2017-01-01 04:00:16 +00:00
setInterval(draw, 10);
2017-01-01 03:51:22 +00:00
</script>
</body>
</html>