KineticJS icon indicating copy to clipboard operation
KineticJS copied to clipboard

KineticJS is an HTML5 Canvas JavaScript framework that extends the 2d context by enabling canvas interactivity for desktop and mobile applications.

Results 100 KineticJS issues
Sort by recently updated
recently updated
newest added

I am using the Dojo AMD loader, and when I use Kinetic minified file, the require callback only receives an empty object. Switching the source to the full source gives...

bug

Kinetic.Layer layer.clear(0, 0, 100, 100); should be: layer.clear({x: 0, y:0, width: 100, height: 100});

When we apply scale, it is not applied to shadowBlur and shadowOpacity. Here is example: http://jsfiddle.net/qDPq8/3/ ``` var stage = new Kinetic.Stage({ container: 'container', width: 500, height: 500 }); var...

When you have a shape on the stage and you try to scroll the stage down (or zoom) the ipad seems frozen. These events seem to have been disabled. So...

Aligning text at the horizontal center of a text shape does not seem to be correctly working when using a custom font. ![kineticjstextalign](https://cloud.githubusercontent.com/assets/2812989/3356326/ced50020-fabf-11e3-82fb-5c95139ddd2e.png) The upper text is "Arial", which perfectly...

kinetic.js 5.1.0 on android chrome 35 doesn't drag stage well per this example: http://jsfiddle.net/agale/AKgXQ/

I'm refering to Ticket #499 (https://github.com/ericdrowell/KineticJS/issues/499#issuecomment-43198500) which is closed. TouchMove-Event with a listener like rect.on('mousemove touchmove', mouseMove.bind(this)) does work on Desktop & iOS. Flawlessly. But it seems to be broken...

Hi, My layer is starting with an opacity of 0 (for animation purposes). Inside of that layer is a group with opacity of 0.5 and inside of that is an...

I do not know if its Chrome or something else, but if any of my objects, circles or images are located at x > 1000, I do not get any...

I use kinetic js version 5.1.0 this.sprite = new Kinetic.Sprite({ x: x, y: y, image: this.source, animation: 'idle', animations: this.anims, frameRate: this.frame_time['idle'], frameIndex: 0, draggable: drag, stroke: '#000000', strokeWidth: 4,...