<html>
<body>
<canvas id="butterfly"></canvas>
</body>
</html>
<script>
var image = new Image();
image.src = 'butterfly-sheets.png';
var sprite = function(opt) {
var sprite_proto = {};
sprite_proto.image = opt.image;
sprite_proto.rect = opt.rect;
sprite_proto.frames = opt.frames;
sprite_proto.current_frame_idx = 0;
sprite_proto.next = function() {
var cur_frame = this.frames[this.current_frame_idx];
this.current_frame_idx += 1;
if (this.current_frame_idx == this.frames.length) {
this.current_frame_idx = 0;
}
return cur_frame;
};
return sprite_proto;
}
var butterfly = sprite({
image: image,
rect:{x: 0, y: 0, w: 17, h: 17},
frames: [
{x: 199, y: 96, w: 17, h: 17},
{x: 231, y: 96, w: 17, h: 17},
{x: 263, y: 96, w: 17, h: 17}
]
});
var canvas = document.getElementById('butterfly');
canvas.width = 800;
canvas.height = 600;
var world = function(opt) {
var world_proto = {};
world_proto.context = opt.context;
world_proto.rect = opt.rect;
world_proto.clear = function() {
this.context.clearRect(0, 0, this.rect.w, this.rect.h);
}
world_proto.render = function(sprite) {
var frame = sprite.next();
this.context.drawImage(
sprite.image,
frame.x,
frame.y,
frame.w,
frame.h,
0,
0,
sprite.rect.w,
sprite.rect.h
);
}
return world_proto;
}
var my_world = world({
context: canvas.getContext('2d'),
rect: {x: 0, y: 0, w: 800, h: 600}
});
image.addEventListener('load', function(){
setInterval(function(){
my_world.clear();
my_world.render(butterfly);
},200);
});
</script>
没有合适的资源?快使用搜索试试~ 我知道了~
HTML Canvas 学习过程中的一些代码.zip
共8个文件
gif:3个
png:2个
gitignore:1个
需积分: 0 0 下载量 42 浏览量
2023-12-30
12:34:22
上传
评论
收藏 116KB ZIP 举报
温馨提示
HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML Canvas 学习过程中的一些代码HTML Canvas 学习过程中的一些代码 HTML
资源推荐
资源详情
资源评论
收起资源包目录
HTML Canvas 学习过程中的一些代码.zip (8个子文件)
code_111230
LICENSE 34KB
canvas1
image
diejia.gif 11KB
markman.png 51KB
effect.gif 42KB
eg.gif 8KB
code
canvas1.html 2KB
butterfly-sheets.png 6KB
.gitignore 10B
共 8 条
- 1
资源评论
辣椒种子
- 粉丝: 4130
- 资源: 5738
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- ORACLE数据库管理系统体系结构中文WORD版最新版本
- Sybase数据库安装以及新建数据库中文WORD版最新版本
- tomcat6.0配置oracle数据库连接池中文WORD版最新版本
- hibernate连接oracle数据库中文WORD版最新版本
- MyEclipse连接MySQL的方法中文WORD版最新版本
- MyEclipse中配置Hibernate连接Oracle中文WORD版最新版本
- MyEclipseTomcatMySQL的环境搭建中文WORD版3.37MB最新版本
- hggm - 国密算法 SM2 SM3 SM4 SM9 ZUC Python实现完整代码-算法实现资源
- SQLITE操作入门中文WORD版最新版本
- Sqlite操作实例中文WORD版最新版本
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功