Questions tagged [easeljs]

EaselJS is a JavaScript library for working with the HTML5 canvas element. Part of the CreateJS suite.

The new Canvas element in HTML5 is powerful, but it can be difficult to work with. It has no internal concept of discrete display elements, so you are required to manage updates manually. The EaselJS JavaScript library provides a retained graphics mode for a canvas including a full, hierarchical display list, a core interaction model, and helper classes to make working with Canvas much easier.

When asking EaselJS questions, you should:

  1. Read the EaselJS API Documentation.
  2. Search Stack Overflow to see if your question has already been answered. Include the text [easeljs] to match questions and answers tagged .
  3. Try to provide a minimalistic example online to illustrate. This is best done with Stack Snippets (the <> toolbar button), but if you like you can also use jsFiddle or JSBin provided you include all the code in the question (not just in jsFiddle/JSBin).
  4. Tag the question appropriately. Always include the tag, and use the other web development such as , , , where appropriate.
  5. Determine whether this problem is browser specific and be sure to note which in the question.
  6. Make sure your code can pass the list. JSHint or the more strict JSLint are excellent tools that determine whether your code contains common errors that will break your JavaScript program.

Resources


Related tags

1009 questions
-2
votes
1 answer

EaselJS Perfromance Issue/Frame rate drops

I am working on the project below initially stages animation works fine but after 2nd level the Frame rate drops drastically, below is the link of the game can anyone look into and help me, please! http://fbapps.ae/mfc/game-demo/ thanks mustafa
-2
votes
1 answer

Can't animate Sprites with EaselJS

I just begin using EaselJS, and I have some issues with sprites. I want to animate a spritesheet, my code seems right but i still have a white canvas. Could you help me to tell me where I am wrong ? var img = new Image(), canvas, …
nicoolaslb
  • 67
  • 1
  • 3
  • 8
-3
votes
1 answer

Could somebody explain the following bit of code?

I am working on a game, that involves a snake moving across the screen. The Following script works but i found it online, so am unsure of what exactly it does var btn = new createjs.MovieClip(null, null, false, { up:0,over:10,down:60,…
MrScotia
  • 1
  • 2
-3
votes
1 answer

How to pass array value into javascript function in create.js?

Just wondering if anyone can help? I can't seem to figure out how to get the value of textArray[i].text from inside this function function tock(event) { createjs.Ticker.setInterval(83.33333333333333); var tickerInt =…
Alpinist1974
  • 21
  • 1
  • 5
1 2 3
67
68