1 Star 0 Fork 0

puliu/GluttonousSnake

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
script.js 500 Bytes
一键复制 编辑 原始数据 按行查看 历史
甜品吃货 提交于 2015-03-13 21:32 . add draw snake and rat
var context,//画布上下文
canvasWidth = 300,
canvasHeight = 300,
snake;
window.addEventListener('load', init, true);
//初始化
function init() {
context = document.getElementById('canvas').getContext('2d');
drawCanvasBoundary();
snake = new Snake;
snake.draw();
}
//绘画边界
function drawCanvasBoundary() {
context.fillStyle = '#fff';
context.fillRect(0, 0, canvasWidth, canvasHeight);
context.strokeStyle = '#666';
context.strokeRect(0, 0, canvasWidth, canvasHeight);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/puliu/GluttonousSnake.git
git@gitee.com:puliu/GluttonousSnake.git
puliu
GluttonousSnake
GluttonousSnake
master

搜索帮助