Vick Xiao's wiki
  • 首页
  • 日记
  • 技术
  • 社会
  • 财经
  • 英语
  • TODO
  • 电子书

game


codePen for createjs

createjs中国

CCreateJS-git

CreateJS库

EaselJS API

ImpactJS库


Easel样例

Tween样例

Sound样例

Rreload样例

createjs样例

绘本01 | 绘本02

绘本test00 | 绘本test01 | 绘本test02 | 绘本test03 | 绘本test04

获取屏幕、浏览器及网页高度宽度

移动端开发遮罩层(弹窗)防止滚动穿透解决方案


游戏开发入门(十一)游戏引擎架构

H5走迷宫游戏


js动画

使用tweenjs写一个发牌的demostois关注

webGL游戏开发-前篇

Vue.js 中使用缓动动画库 TweenJs

一篇文章带你快速入门createjs

createjs 小游戏开发实战

createhs项目DEMO


http://www.backwardcompatible.net/170-flip-picture-html5-canvas-easeljs

https://stackoverflow.com/questions/17086676/flipped-spritesheet-animation-using-easeljs-after-preloading-the-image

CreateJs 入门必知必会

CreateJS 新司机开车指南

基于createjs实现的翻页类

createjs支持spine骨骼的简单封装

HTML5骨骼动画Demo 使用min2d、createjs、pixi播放spine动画

Articles and Tutorials

image.scaleX = -1;
To flip vertically, use:

image.scaleY = -1;
Before flipping, make sure you set the regX and/or regY to the center of image. Full example with image sized 120x50:

var myimg = new createjs.Bitmap("sword.png");
myimg.regX = 60;
myimg.regY = 25;
myimg.scaleX = -1;  // flip horizontally
myimg.scaleY = -1;  // flip vertically