1
vote
0answers
58 views

KineticJS (4.4.3) achieve swiping between multiple pages (layers)

I'm trying to develop an app with multiple pages (layers with additional items) and a swipe-functionality to switch between them. I've tried several variants, but somehow none of them could satisfy my ...
3
votes
0answers
170 views

How to implement Minimap of KineticJS Layer?

I am currently working on an application which displays kind of amap. You can do several actions on the map. The map can get really big so the user needs a smaller map (Minimap) to keep track of the ...
0
votes
1answer
154 views

KineticJS calling moveToTop() automatically after clicking over shape

I am with a little problem here but I don't know if it is a bug or a new feature since in the KineticJS change logs there is the following change: "drag and drop operations now automatically ...
1
vote
2answers
304 views

Swapping between layers in kineticJS

I'm trying to treat layers as pages -- i.e. I draw on one page, then turn the page and draw on another, each time storing the previous page in case the user goes back to it. In my mind this ...
-1
votes
1answer
202 views

KineticJS Layers Layering

I have one stage and 4-5 layers with images and shapes on every layer. Every time I add an object in a layer that layer takes a greater z-index , index and comes at the top of the other layers. ...
2
votes
1answer
142 views

Adding a layer over a PDF file using Kinetic JS

I'd like to add a layer over a pdf file (PDF JS) using Kinetic JS. The main purpose is to add annotation comments on a PDF file. My problem, is that the canvas of the pdf file has different ...
2
votes
1answer
245 views

kineticjs: how to render two copies of a complex shape

How to place two instances of a group side-by-side? var stage = new Kinetic.Stage({ container: 'canvas', height: 125, width: 250 }); var layerLeft = new Kinetic.Layer({ ...
0
votes
2answers
866 views

Is it possible to have multiple KineticJS animations on a single layer?

I have a problem getting my KineticJS animations to stop(). I have three KineticJS image objects on the same layer, and I have added a KineticJS animation to each of those KineticJS image objects. ...
-1
votes
1answer
288 views

Kineticjs Html5 cant effect image object in other different layer in same stage? [closed]

I can't resize or rotate different layer in same stage , it change the size or rotation but it does not effect immediately , If you want to see use this link : ...
3
votes
1answer
1k views

Kinetic.JS - can't change z-index order of layers?

I can successfully change the z-index of shapes and groups, but I have so far not been able to do this for layers. JS Fiddle demo Instead, they seem doomed to stay in the stack order that I added ...
3
votes
2answers
3k views

Canvas (Kinetic.JS): multiple layers vs single layer approach

Can anyone explain why (indeed, if) it's best to abstract the major parts of a canvas game to different layers when using something like Kinetic? It of course feels like you should, and so far I have ...
0
votes
1answer
301 views

Kinetic.JS - why does layer order change overwrite my colour?

I'm currently playing with Kinetic.JS. I have drawn a rather crude UFO-like shape in two parts, a hull (red) and a disc (grey). Demo - JSBin Question: how come when I later arrange the shape ...