CreateJSのeasel.js(一)
CreateJS是基于HTML5开发的一套模块化的库和工具。
基于这些库,可以非常快捷地开发出基于HTML5的游戏、动画和交互应用。
CreateJS为CreateJS库,可以说是一款为HTML5游戏开发的引擎。
EaselJS
一个JavaScript库,使HTML5 Canvas标签变得更简单。
用于创建游戏,生成艺术作品,和处理其他高级图形化等有着很友好的体验。
上下左右绘制文字
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="lib/easeljs-0.8.2.min.js"></script>
<script src="lib/tweenjs-0.6.2.min.js"></script>
<style>
*{
padding: 0;
margin: 0;
}
</style>
</head>
<body> <p>上下左右绘制文字</p>
<canvas id="game"></canvas> <script>
var canvas,
stage,
w = document.body.clientWidth,
h = document.body.clientHeight; function init() {
// 设置canvas属性
canvas = document.getElementById('game');
canvas.width = w;
canvas.height = h;
// 创建舞台
stage = new createjs.Stage(canvas); // 绘制居中文字
var text1 = new createjs.Text('Hello World', '20px Arial', '#ff4400'),
bounds = text1.getBounds(); text1.x = stage.canvas.width - bounds.width >> 1;
text1.y = stage.canvas.height - bounds.height >> 1; // 绘制左边的文字
var text2 = new createjs.Text('Hello World', '20px Arial', '#ff4400'); // 绘制右边的文字
var text3 = new createjs.Text('Hello World', '40px Arial', '#ff4400'),
bounds = text3.getBounds();
text3.x = w - bounds.width; // 下居中文字
var text4 = new createjs.Text('Hello World', '20px Arial', '#ff7700'),
bounds = text4.getBounds(); text4.x = stage.canvas.width - bounds.width >> 1;
text4.y = stage.canvas.height - bounds.height; stage.addChild(text1);
stage.addChild(text2);
stage.addChild(text3);
stage.addChild(text4);
stage.update(); } init(); </script> </body>
</html>
Bitmap绘制图片
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>绘制图片</title>
<script src="lib/easeljs-0.8.2.min.js"></script>
<script src="lib/tweenjs-0.6.2.min.js"></script>
<style>
*{
padding: 0;
margin: 0;
}
</style>
</head>
<body> <canvas id="game"></canvas> <script>
var cjs = createjs,
canvas,
stage,
container,
w = 200, // 图片就是200*200的大小
h = 200,
image; function init() {
// 设置canvas属性
canvas = document.getElementById('game');
canvas.width = w;
canvas.height = h; // 创建舞台
stage = new cjs.Stage(canvas);
// 绘制外部容器
container = new cjs.Container();
stage.addChild(container); // 加载图片
image = new Image();
image.src = 'icon.png';
image.onload = handleImageLoad;
} function handleImageLoad(event) {
var bitmap = new cjs.Bitmap(event.target);
bitmap.x = 0;
bitmap.y = 0;
bitmap.on('click', function () {
alert();
});
// 加入场景
container.addChild(bitmap);
stage.update();
} init(); </script> </body>
</html>
绘制点击提示,使用Tween
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>绘制点击提示,使用Tween</title>
<script src="lib/easeljs-0.8.2.min.js"></script>
<script src="lib/tweenjs-0.6.2.min.js"></script>
<style>
*{
padding: 0;
margin: 0;
}
body {
background: #000000;
}
</style>
</head>
<body> <canvas id="game"></canvas> <script>
var cjs = createjs,
canvas,
stage,
container,
w = window.innerWidth,
h = window.innerHeight,
s,
dt = ''; function init() {
canvas = document.getElementById('game');
canvas.width = w;
canvas.height = h;
// 创建舞台
stage = new cjs.Stage(canvas);
container = new cjs.Container(); // 绘制外部容器
stage.addChild(container); // 创建矩形
s = new DrawArc(10, '#fff');
s2 = new DrawArc(10, '#fff'); var bounds = s.getBounds(),
bounds2 = s2.getBounds(); s.x = w - bounds.width >> 1;
s.y = h - bounds.height >> 1;
s2.x = w -bounds2.width >> 1;
s2.y = h - bounds2.height >> 1;
s2.alpha = 0.6; s.on('click', function () {
alert('提示');
}); // 加入场景
container.addChild(s);
container.addChild(s2); // Tween
cjs.Tween.get(s, {loop: true})
.to({scaleX: 2.5, scaleY: 2.5, alpha: 0}, 1000, cjs.Ease.linear) // jump to the new scale properties (default duration of 0)
.to({scaleX: 1, scaleY: 1, alpha: 1}, 0, cjs.Ease.linear); // 设置游戏帧率
cjs.Ticker.setFPS(60);
cjs.Ticker.on('tick', stage);
} // 绘制矩形 类
function DrawArc(r, c) {
// 继承Shape类
cjs.Shape.call(this);
this.graphics.beginFill(c).arc(0,0,r,0,2*Math.PI);
// 设置矩形的边界属性,这样可以获得width和height属性
this.setBounds(0,0,r,r);
} DrawArc.prototype = new cjs.Shape(); // 获得原型方法 init(); </script> </body>
</html>
绘制笑脸
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>绘制笑脸</title>
<script src="lib/easeljs-0.8.2.min.js"></script>
<script src="lib/tweenjs-0.6.2.min.js"></script>
<style>
*{
padding: 0;
margin: 0;
}
</style>
</head>
<body> <canvas id="demoCanvas" width="1000" height="500">
alternate content
</canvas> <script> var stage = new createjs.Stage('demoCanvas'); // 绘制圆形
var circle = new createjs.Shape();
circle.graphics.beginFill('orange').drawCircle(0,0,100).endFill();
circle.x = 500;
circle.y = 240;
stage.addChild(circle); // 绘制眼睛
var eye = new createjs.Shape();
eye.graphics.beginFill('rgba(0,0,20,.5)').drawEllipse(0,0,20,40).endFill();
eye.x = 450;
eye.y = 180;
stage.addChild(eye); var eye2 = new createjs.Shape();
eye2.graphics = eye.graphics.clone();
eye2.x = 530;
eye2.y = 180;
stage.addChild(eye2); // 绘制鼻子
var nose = new createjs.Shape();
nose.graphics.beginFill('rgba(0,0,20,.5)').drawCircle(0,0,10).endFill();
nose.x = 500;
nose.y = 250;
stage.addChild(nose); // 绘制嘴巴
var mouth = new createjs.Shape();
mouth.graphics.ss(4).s('rgba(0,0,0,.5)').a(0,0,100,Math.PI*60/180,Math.PI*120/180);
mouth.x = 500;
mouth.y = 200;
stage.addChild(mouth); stage.update(); </script> </body>
</html>
CreateJSのeasel.js(一)的更多相关文章
- createjs easal.js制作了一个很简单的链路图
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title&g ...
- HTML5之2D物理引擎 Box2D for javascript Games 系列 翻外篇--如何结合createJS应用box2d.js
太久没有更新了,新年回来工作,突然有收到网友的邮件提问,居然还有人在关注,惭愧,找了下电脑上还有一点儿存着,顺便先发这一个番外篇吧,好歹可以看到真实的效果,等我考完英语,一定会更新下一章," ...
- 【一统江湖的大前端(8)】matter.js 经典物理
目录 [一统江湖的大前端(8)]matter.js 经典物理 一.经典力学回顾 二. 仿真的实现原理 2.1 基本动力学模拟 2.2 碰撞模拟 三. 物理引擎matter.js 3.1 <愤怒的 ...
- 前端工程师面试问题归纳(一、问答类html/css/js基础)
一.参考资源 1.前端面试题及答案整理(一) 2.2017年前端面试题整理汇总100题 3.2018最新Web前端经典面试试题及答案 4.[javascript常见面试题]常见前端面试题及答案 5.W ...
- JS中跨域问题
这里说的js跨域是指通过js在不同的域之间进行数据传输或通信,比如用ajax向一个不同的域请求数据,或者通过js获取页面中不同域的框架中(iframe)的数据.只要协议.域名.端口有任何一个不同,都被 ...
- CreateJS入门 -- 注释详细到爆炸(My Style)
写在前面 首先,还是谢谢大家的支持,谢谢!记得在之前的文章中我说过自己算是一个半文艺程序员,也一直想着写一写技术性和其他偏文学性的文章.虽然自己的底子没有多么优秀,但总是觉得这个过程中可以督促自己去思 ...
- JS动画之缓动函数分析及动画库
上一篇讲了JS动画定时器相关知识,这一篇介绍下缓动函数及流行的动画库. 熟悉的图 实际使用 jquery animate()+jquery.easing插件的使用: $(selector).anima ...
- 基于python编写的天气抓取程序
以前一直使用中国天气网的天气预报组件都挺好,可是自从他们升级组件后数据加载变得非常不稳定,因为JS的阻塞常常导致网站打开速度很慢.为了解决这个问题决定现学现用python编写一个抓取程序,每天定时抓取 ...
- [算法][包围盒]球,AABB,OBB
参考地址请看图片水印:http://www.cnblogs.com/iamzhanglei/archive/2012/06/07/2539751.html http://blog.sina.com.c ...
随机推荐
- 常见的HTTP 状态代码
HTTP 状态代码 如果向您的服务器发出了某项请求要求显示您网站上的某个网页(例如,当用户通过浏览器访问您的网页或在 Googlebot 抓取该网页时),那么,您的服务器会返回 HTTP 状态代码以响 ...
- 第一章 zookeeper基础概念
1.ZooKeeper是什么 ZooKeeper为分布式应用提供了高效且可靠的分布式协调服务,提供了统一命名服务. 配置管理和分布式锁等分布式的基础服务.在解决分布式数据一致性方面, ZooKeepe ...
- Modifier
To class contains: private: Just for the class of which defined it. default: For the class of which ...
- VS2005 “无法在证书存储区中找到清单签名证书”错误的解决方法
方法一:在VS2005中出现该错误时,用记事本打开项目的.csproj文件,删除以下内容即可: <ManifestCertificateThumbprint>B531F2CF2227 ...
- 常用linux指令
删除:rm -rf -r 就是向下递归,不管有多少级目录,一并删除 -f 就是直接强行删除,不作任何提示的意思 压缩解压:tar -c: 建立压缩档案 -x:解压 -t:查看内容 -r:向 ...
- Base64编码通过URL传值的问题
base64 编码中使用了 +号,+号通过URL传递时会变成空格,因为编码的方式的问题前台使用:Ext.encode(title_text.getValue().replace(/\+/g, '%2B ...
- C# 根据身份证号码获取简易信息
public class PackIden { /// <summary> /// 根据身份证获取生日 /// </summary> /// <param name=&q ...
- CSS 控制滚动条样式
/*作为IT界最前端的技术达人,页面上的每一个元素的样式我们都必须较真,就是滚动条我们也不会忽略.下面我给大家分享一下如何通过CSS来控制滚动条的样式,代码如下:*/ 1 /*定义滚动条轨道*/ #s ...
- Java 线程池的原理与实现
最近在学习线程池.内存控制等关于提高程序运行性能方面的编程技术,在网上看到有一哥们写得不错,故和大家一起分享. 建议:在阅读本文前,先理一理同步的知识,特别是syncronized同步关键字的用法.关 ...
- myeclipse2013以及以后的最新版各种破解(其实就是获取活跃码而已)
当你下到最新版的myeclipse-blue的时候你是否会为注册激活而烦恼呢,别担心,其实激活也就那么点事儿,请遵循我如下做法就可以了: 免积分下载破解地址 http://download.csdn. ...