KineticJS is an HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications.

learn more… | top users | synonyms

0
votes
0answers
30 views

How do I create a button that loops through all the line variables making one visible at a time?

How do I create a button that loops through all the line variables making one visible at a time? I'm using Kinetic Javascript, I want to make a button that loops through all the line variables and ...
0
votes
0answers
70 views

kineticjs - show/hide canvas slow due event-listeners?

I'm developing a web-app with kinetic. I have different 'views' Each view contains several layers. Each layerd holds Images/Groups/Shapes, but mostly images. When showing a view, the other view will ...
2
votes
3answers
75 views

Making an Object “transparent” for Mouse Events?

I'm working on a project with HTML5 Canvas and KineticJS. A half-transparent overlay (a KineticJS group or layer) is placed all over the scene. The problem is: Mouse events bound to KineticJS objects ...
0
votes
1answer
97 views

KineticJS: Set width based on percentage

I'm trying KineticJS and see this example: var stage = new Kinetic.Stage({ container: 'container', width: 500, height: 200 }); My question is how to set width based on percentage. I want ...
0
votes
1answer
207 views

Get X,Y Coordinate of Zoomed Image Pixels - KineticJs / HTML5 Canvas Image

Am having a hard time wrapping my head around this. Am developing application that allow users to upload photo, during uploading of the photo, the application performs detection on the server to get ...
0
votes
0answers
33 views

KineticJS: How to Use a Shape to Erase from a Layer?

I need to erase portions of a single KineticJS layer by drawing. Do I just use custom drawFunc on the layer? Specifically can I use a Spline to erase? Thanks, Philip
0
votes
1answer
90 views

Kinetic JS - image rotation based on rotating another object and anti clockwise rotation

I am trying to rotate an image using the mouse angle: First I calculate the mouse degree using: mouseX = parseInt(e.clientX - offsetX); mouseY = parseInt(e.clientY - ...
0
votes
1answer
47 views

KineticJS removing and adding layers

I feel I am being incredible stupid but for some reason am blind to being able to fix this issue. I want 3 individual layers, each that can have multiple object/shapes on them and then on click I ...
0
votes
1answer
140 views

Drag, Drop, and Resize Images with canvas

This is a very nice demo of canvas and kineticjs. Anyway if an image is drawn to a size of zero pixel all images on the canvas disappear. I'm looking for alternatives to kineticjs in pure JS, or is ...
0
votes
0answers
123 views

Clearing HTML5 Canvas performance for mobile

I'm having some big problems with HTML5 canvas as my app draws a LOT of shapes on several layers (using KineticJS) and then I need to clear the canvas/all layers in order to redraw a load of different ...
1
vote
1answer
95 views

KineticJS JavaScript Save As FileSystem Option

I am using KineticJS to create a web application which is a standalone application using html5, css and javascript. I have the following piece of code to convert the present canvas into an imageURI. ...
1
vote
1answer
135 views

Kinetic JS - Rotate image based on mouse angle

I am trying to rotate an image on its center using the angle of the mouse on the stage. It rotates using: dlayerA1.rotate(degree); but it flys all over and does not rotate on its center!! ...
0
votes
1answer
52 views

How can I get left and top coordinates of KineticJS stage?

I'm trying to get the co-ordinates of the mouse cursor and do operations when it leaves my KineticJS stage. But I need to get the co-ordinates of the mouse relative to the stage canvas. So when the ...
1
vote
1answer
223 views

Improving slow canvas animation on Retina iPad - KineticJS

I am using KineticJS to perform HTML Canvas animations. Animations work perfectly on all desktop browsers, and non retina iDevices (including iPad mini). However, from a retina device (browser or ...
0
votes
1answer
70 views

Change Kinetic.Text's text on Group click event

Just started checking out kinetic js. I have many groups, each of which has a Kinetic.Text and a Kinetic.Rect. I can easily change any text by this prompt; text.on('click', function(evt) { ...
0
votes
1answer
145 views

fill, border not working for kineticjs Text object on chrome

I have updated to 4.4. I'm initializing a Text object like this: var droppableText = new Kinetic.Text({ x : posX, y : posY, name : field, stroke : ...
0
votes
0answers
28 views

Drag image flcker in iBooks 3.1

I use KinjecticJS framwork in EPUB3, it work well with ibooks 3.0.2 but it not work well with ibook 3.1. my problem is that, after set an image is draggale: true, i drag the image, it seem flicker and ...
0
votes
0answers
52 views

Binding MouseMove event causes inconsistency with mouse release event being fired

Here is the fiddle, http://jsfiddle.net/aTeRF/3/ If line 12 is commented out, this part this.eventHandler.on(Environment.TOUCH_MOVE_EVENT_NAME, this.onTouchMove.bind(this)); then the mouseUp ...
0
votes
1answer
89 views

Kinetic JS image setVisible

I am trying to add an image inside a circle using the following script: .... var rCvisible = false; ... var rC = new Image(); rCircle; rC.onload = ...
0
votes
1answer
67 views

Kinetic JS - getDragLayer version 4.4

I update Kinetic JS from 4.3.1 to version 4.4, I get the following error with getDragLayer: Object doesn't support property or method 'getDragLayer' I am using the following script. ...
0
votes
1answer
164 views

Kinetic JS - Calculate the degree of rotation of a circle

I am trying to calculate the angle of rotation of a circle, I am using the following script: var circle = new Kinetic.Circle({ x: 256, y: 256, radius: ...
0
votes
2answers
59 views

How to inherent from Kinetic.Rect

I am drawing a raster using Kineticjs. This works using Kinetic.Rect. Now I want to use other objects than Kinetic.Rect. In this object I should be able to save the x and y of the position in the ...
0
votes
1answer
207 views

Uncaught TypeError: Cannot call method 'getLayer' of undefined

I am using KineticJS, but when I try to remove two components on a layer on stage (a Kinetic.Image instance and a Kinetic.Text instance), I get the uncaught typerror, even when I have put my code in ...
0
votes
2answers
227 views

How to add a background color to Kinetic JS stage or layer?

I have a Kinetic JS stage and a layer var stage = new Kinetic.Stage({ container: 'container', width : STAGE_WIDTH, height : STAGE_HEIGHT }); var layer = new Kinetic.Layer(); I've ...
0
votes
1answer
56 views

pointer-events in Kineticjs

In Kinetik, if I have this: A layer with objects with events Above, I have another layer with overlapping objects How I can keep layer 1 events? (Something like pointer-events property in CSS?) ...
0
votes
2answers
404 views

kineticjs chrome fill not working [closed]

Automatic Chrome update 26.0.1410.43m has something new that stops fill on my KineticJS shapes - also on the tutorial shapes I am relieved to see - ...
2
votes
1answer
213 views

Combining three.js and KineticJS - 3D cube

I am trying to add a 3D cube to Kinetic JS canvas to show the x,y,z rotation. I found this article http://www.tonicodes.net/blog/combining-three-js-and-kineticjs. I worked with version 3.8, When I ...
0
votes
1answer
138 views

Scroll bars - KineticJS

I have a canvas defined in a div. I have set the option the oveflow option in div to scroll. when I set any content in the canvas. I'm able to scroll. How can I have the same affect using KineticJS ?
2
votes
1answer
101 views

kineticjs shape in typescript

I'm trying to create a shape based on the following kineticjs JavaScript code: var triangle = new Kinetic.Shape({ drawFunc: function(canvas) { var context = canvas.getContext(); ...
0
votes
0answers
67 views

Kineticjs on mobile setting 2 different width and sizes

I've a really weird issue when setting the height and width on the Kinetic.Stage(). If I set the height to 300 each on the desktop I get: <canvas width="300" style="width: 300px; height: 300px; ...
0
votes
1answer
55 views

Kineticjs can't find my object after rotation change with drag

I have made a jsFiddle: http://jsfiddle.net/mFxhS/1/ but strangely doesn't work well but still you can see the whole code. But I have did some console.log's and he does know the identifiers but still ...
0
votes
1answer
133 views

KineticJS - asp.net MVC - Json save canvas data as a downladable PNG file

My project is asp.net MVC 3, I export the canvas data using the following script: $("#savePNG").click(function () { stage.toDataURL({ callback: function (dataUrl) ...
0
votes
2answers
138 views

KinectJS drag image demo not working in latest chrome version

I am having a similar issue on my project but was able to reproduce it on the kinectjs demo site. The following page works on IE but the latest version of Chrome (ver. 26.0.1410.43) the drag and drop ...
0
votes
1answer
63 views

Kineticjs - bind draggable image to canvas

I'm using Kinetcjs library for handling images in our canvas so we can drag images about within the Canvas. One issue I'm running into is that users can drag images loaded into the canvas off the ...
2
votes
1answer
79 views

Relative Pointer Position

I need some help figuring out how to calculate the relative pointer position on a KineticJS stage. In my case my stage changes position, offset, and scale. Here is the demo: ...
1
vote
1answer
123 views

kinetic.js change fill type of object after instantiation, after added to layer and scene, and in animation loop

I am attempting to change the fill style of a KineticJS Rect object after it has been instantiated, after being added to the layer and scene, and in the animation loop. I am trying to toggle the fill ...
1
vote
1answer
221 views

Kinetic JS - drawing arrowhead at start and end of a line using mouse

I am trying to add arrowhead to the start and end of lines that I am drawing using the mouse, here is my script for drawing the line: document.getElementById('dLine').onclick = ...
1
vote
1answer
173 views

How can I detect when a draggable circle shape overlaps another circle shape with KineticJS?

I have a draggable circle shape that the user drags to another circle shape [static, non-draggable]. When the draggable circle overlaps the static circle, I need to display a "Success" text. How can I ...
2
votes
2answers
463 views

Canvas frameworks performance

I want to choose a canvas framework for a project that i'm about to start. Hence, i started a research to find the one that would suit my needs. While searching for the pros and cons of various ...
0
votes
1answer
97 views

HTML 5 Canvas jCanvas/KineticJS when image is draggable, canvas/stage is unresponsive for clicks/touch on an iPad

I've tried this with both jCanvas and KineticJS. When an added image is made draggable: var image = new Kinetic.Image({ image: imageObj, id: imageName, x: parseInt(CoordX), y: ...
2
votes
0answers
76 views

KINETIC.JS loading image from stored json

I was able to load multiple image at once from a dummy json string that I created with json = stage.toJSON();. Offline this works flawlessly and it even remembers the position that I dragged it too. ...
3
votes
2answers
61 views

Better caching to eliminate framedrop

I'm working on a small game, just for practicing purposes, for the first time. And as you can see in my fiddle that it starts to framedrop after a while when a lot of bullets and/or enemies are on the ...
-1
votes
1answer
77 views

Looking for details about event triggering on KineticJS with groups and its children

I am planning to create some elements in my application which can be used as a group. So for example I could create a circle a triangle and a square and group them. So I could drag and drop the group ...
1
vote
2answers
58 views

How to check if group has a children or not in Kineticjs

Is there any function that let us to know if a group has children or not ?, because if I try like Mygroup.getChildren() in group that doesn't has children i'll get error. thank's
0
votes
1answer
106 views

Kinetic JS Drawing Shapes and Zoom in and out

I am trying to draw different shapes on top of an image using KineticJS and zoom in and out using different buttons, each element works well by itsetlf but when I combine all functions on the same ...
0
votes
0answers
76 views

Positioning issue after dragging image in kineticJS

according to my jsFiddle, after the 'Run' button is clicked, the ball goes to the position where you click on the stage. But when i drag/drop the ball -> click on Run -> click on stage, the ball no ...
0
votes
1answer
21 views

Passing param directly works, passing it within a object or array does not work

I have a function which looks like this function myFunction(param) { param.on('mouseover', function(){/*Do something*/}); } var polygon = new Kinetic.Polygon({ //My settings }); ...
1
vote
2answers
219 views

Drawing lines along the cursor path in KineticJS

I am using KineticJS to implement a drawing application. I have used it to draw shapes, straight lines. I have used way described in KineticJS - Drawing Lines with Mouse to draw straight lines. But ...
0
votes
1answer
155 views

Adding Kinetic JS to PDF file

I'm trying to add KineticJS shapes to an existing pdf file using pdf.js. The problem I have is that KineticJS creates a new canvas and won't use the canvas created by pdf.js. I've tried referencing ...
0
votes
1answer
179 views

Kinetic JQuery objects - get X/Y of each element in a canvas

I have the brief of setting up a tool that users can add marker points to write notes about imagery. I have setup a canvas object using the Kinetic library - this is placed over an div containing a ...

1 2 3 4 5 17