用 HTML5 canvas制作一个小游戏生成源代码
时间: 2024-03-10 08:48:10 浏览: 112
HTML5用Canvas编写的游戏源码.zip
5星 · 资源好评率100%
好的,下面是一个简单的 HTML5 canvas 小游戏的源代码,实现了一个小球在屏幕上弹跳的效果:
```
<!DOCTYPE html>
<html>
<head>
<title>Canvas Game</title>
<style>
canvas {
border: 1px solid #000;
}
</style>
</head>
<body>
<canvas id="gameCanvas" width="600" height="400"></canvas>
<script>
var canvas = document.getElementById("gameCanvas");
var ctx = canvas.getContext("2d");
var x = canvas.width/2;
var y = canvas.height-30;
var dx = 2;
var dy = -2;
var ballRadius = 10;
function drawBall() {
ctx.beginPath();
ctx.arc(x, y, ballRadius, 0, Math.PI*2);
ctx.fillStyle = "#0095DD";
ctx.fill();
ctx.closePath();
}
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
drawBall();
if(x + dx > canvas.width-ballRadius || x + dx < ballRadius) {
dx = -dx;
}
if(y + dy > canvas.height-ballRadius || y + dy < ballRadius) {
dy = -dy;
}
x += dx;
y += dy;
}
setInterval(draw, 10);
</script>
</body>
</html>
```
这个小游戏的实现比较简单,主要是通过不断地更新小球的位置来实现弹跳的效果。你可以根据自己的需求进行修改和扩展。
阅读全文