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

1
vote
2answers
25 views

Javascript - KineticJS create own class

How to create a new class based on KineticJs Sprite class. I'm trying like this: (function() { Kinetic.MyCircle = function(config) { this._initMyCircle(config); }; ...
-2
votes
1answer
27 views

Kineticjs Stage Cordinates after scaling

I'm using KineticJS to allow users to free hand drawing shapes on canvas and I am successfully able to zoom in/out canvas stage by setting scale. Challenge: Am not getting the updated scaled ...
0
votes
0answers
14 views

Chache stage to image before dragging and revert it back to original state after it (kineticjs)

I would like to improve my canvas performance while dragging and after reading this issue I wanted to implement "stage caching" as well. Which means, I want to convert the stage to an image, right ...
0
votes
1answer
37 views

Angularjs + Kineticjs mouse events

I want to use Angularjs with Kineticjs. The problem is that, it seems angular is overriding mouse events on my stage object. The following html works fine as stand alone file, you can test it. But if ...
0
votes
2answers
14 views

Can't Detect Mouseover on This KineticJS Shape?

I have a KineticJS shape that draws a bezier curve that is wider on one end. It draws correctly, but I can't yet detect a 'mouseover' event on it. I have created a small JSFiddle demo of the anomaly, ...
0
votes
2answers
34 views

missing Kinetic.Tween method in Kinetic.js Typescript file

It seems like the current version of the Kinetic.js Typescript file found on CodePlex (http://kineticjstypescript.codeplex.com/) does not have a tween method. Looking at the definition file there is ...
0
votes
1answer
19 views

KineticJS object with added property to JSON

I am trying to serialize KineticJS object (with one added property) to JSON, but if I call the JSON.stringify(test);, it returns only JSON representation of KineticJS object without my added property. ...
1
vote
2answers
38 views

Uncaught TypeError: Object #<Object> has no method 'transitionTo'

After upgrading kineticjs from 4.0.5 to 4.5.1, I get Uncaught TypeError: Object #<Object> has no method 'transitionTo' Following code works with the previous version: ...
0
votes
0answers
25 views

Kinetic JS Mind Map

I have to make a mind map project. I am using kinetic js for this . I am new to Kinetic js. I have implemented the project as when you click and of the button a corresponding shape appears on the ...
0
votes
1answer
19 views

kineticjs snaping rect into another rect

I'm using kineticjs to try and drag a small rect into a larger rect and have it snap into place. However, I get an error when I try to use: stage.getUserPosition() A fiddle of what I was trying to ...
0
votes
1answer
15 views

Telerik MVC Editor - Ajax Decode

I am using the following to send a canvas image and contents of Telerik MVC Editor to generate PDF file using itextSharp. $("#savePDF").click(function() { var editor = ...
1
vote
0answers
19 views

attach drop target to dragged object

In Kineticjs is it possible to attach a droptarget to the element being dragged. I need to highlight the target when drop happens. The code i am using is circle.on("dragstart", function(e) { ...
0
votes
1answer
38 views

Smooth animations in kinetic.js (html5 canvas)

I need a better understanding of kinetic.js animation. I was using the tutorial found http://www.html5canvastutorials.com/kineticjs/html5-canvas-stop-animation-with-kineticjs/ . I played with the code ...
0
votes
0answers
22 views

collision detection + mouse events in kineticjs

I am trying to do a drag & drop on a number of rectangle objects that are draggable. There is another set of rectangle objects acting as container for dropping objects - I have added them to a ...
0
votes
1answer
77 views

KineticJS Stage draggable perfomance

Good afternoon. I have a small problem with the optimization KineticJS and stage. When drag the scene on my computer, it runs smoothly. When to try a more low-end machines, it appears slowly and some ...
0
votes
2answers
44 views

Getting pixel data from Kinetic JS Image

I am using Kinetic JS to display an image, and I would like to implement a magnify function. So basically I would like to copy the area of the image which the mouse pointer is hovering over, scale ...
0
votes
2answers
56 views

How do you add a line break inside of a javascript variable using KineticJS?

I have a variable that looks like this: var simpleText = new Kinetic.Text({ text: 'where text goes', fontSize: 24 }); How do I insert a line break where the text goes. I've tried: text: ...
0
votes
0answers
38 views

Kinetic JS - Drag layer mouse events

I can drag two layers using the following: background1.on('dragmove', function() { dlayerA1.setAttrs({x:this.getX(), y:this.getY()}); dlayerA1.draw(); ...
0
votes
1answer
36 views

Set dragBoundFunc in rotating shape Kineticjs

I have already create Rectangle with dragBoundFunc using KineticJs var myrect=new Kinetic.Rect({ x:0, y:0, width: 10, height: 80, fill:"grey", ...
1
vote
1answer
32 views

KinectJS - Can't remove my shape

I'm using KinectJS to create my own little drawing program. Everything is going great - until he have to remove my shapes from my stage/layer. I've used: layer.removeChildren(); Which ...
2
votes
1answer
43 views

Kinetic JS shape shadows get more visible when adding another shape

First, I'm required to use version kinetic-v4.3.3 due to a group dragging (known) bug in the latest version. So I have a kinetic structure as follows: ShapesGroup ShapeGroup Circle Text ...
0
votes
1answer
32 views

Kinetic.js: Get MinX, MaxX, MinY, and MaxY of rotated Kinetic.Label

I'm trying to prevent a rotated Label from being dragged off the screen, but I cannot figure out how to get MinX, MaxX, MinY, and MaxY of the object in its rotated state. getHeight & getWidth only ...
1
vote
1answer
26 views

How to add subscript and superscript text in kinetic text

I am using kinetic.js to create a text object in a canvas. Now I need to create a text object with subscript and superscript e.g: H2O (here '2' will be subscript) and I am not able to create a ...
0
votes
3answers
36 views

How to get Children that have same type Kineticjs?

I have a trouble in Kineticjs, in my code: var G1=new Kinetic.Group() var sq=new Kinetic.Rect({ x:0, y:0, name:"sq" }) var line1=new Kinetic.Line({ Points:[0,0,10,10], name:"line1" }) var line2=new ...
1
vote
3answers
35 views

Hide a single element in a layer - Kineticjs

This code uses Kineticjs. I am using mouseover and mouseout events for one of the images. The layer has 2 images. I want to hide just one of them. Do I need to create a separate layer for each image? ...
0
votes
0answers
27 views

Pass KineticJS shape attribute to Ruby variable

Is there a way to pass a KineticJS shape attribute to a ruby variable? Or maybe there is a better way of doing this: Basically I want to be able to click on a kineticJS shape and show the text of ...
0
votes
0answers
28 views

HTML5 offline needs to work on mobile devices canvas kineticjs

sorry if this has been posted before i have looked around and havn't been able to find an appropriate answer. I am currently recreating an extremely old Introduction To Music Theory textbook for ...
2
votes
1answer
44 views

KineticJS - Multiple transforms applied serially

I'm using KineticJS to allow users to manipulate their images -- crop, rotate, scale, flip, etc. When I apply any transform to the image, it works great. But when I apply a second transform it acts ...
0
votes
1answer
38 views

Aligning text objects next to each other - KineticJS

I have text objects and label objects which are seperate. They need to be aligned next to each other when being drawn. I'm adding the x and y co-ordinates but the objects are off by some pixels and ...
1
vote
1answer
14 views

KineticJS How to listen to image drop from file explorer ?

I'm using kineticjs v4.5.1 I'm looking for a way to add image to my canvas from a system drag'n'drop. I've tried to add an event listener to my container : ...
0
votes
1answer
60 views

KineticJS draw line between two shapes

I have two KineticJs rectangles that are draggable on the canvas. I want to be able to use some modifier (like clicking a button that says draw line, or a keyboard modifier like cntrl) and click on ...
1
vote
1answer
38 views

set offset/position of polygon to rotate

I'm trying to perform a crop of a background image with different shapes. The objective is to move/rotate around the polygons, crop the background with the shape of the polygon, somehow plot the ...
0
votes
1answer
67 views

how to get access to classes from a Kinetic.js click event

I can't seem to get a typescript class instance within my click event. I have a TypeScript class Navigation. class Navigation { currentPage: number; wireMouseEvents() { ...
0
votes
1answer
42 views

Define x,y of line (start/end) connector for two shapes KineticJS/HTML5

I'm working in a small project where I'll need create a resizable parent shape and a resizable child shape with a connection line. I did​​ in KinecticJS. But, I have a problem for calculate the x1, x2 ...
0
votes
0answers
45 views

KineticJS - Slow performance when animating tile opacity [Example]

I'm having a problem with a grid of Rect shapes. Grid is 120 by 60. JSFiddle example here http://jsfiddle.net/5MfYR/ Here is the equivalent in CoffeeScript code: window.size = { width: ...
0
votes
1answer
23 views

Adding attribute style of an image in Kineticjs

I have set image property in Kineticjs var img= new Image() img.style.cssText = 'box-shadow: 10px 10px 5px #888888;' img.src = srclink[0]; var tool=new Kinetic.Image({ x: ...
0
votes
0answers
27 views

KineticJS - Is fillPatternImage recalculated every redraw?

I'm building a game and have a 3000x2000 map (1 png file). I'm creating 60*40 (x*y) tiles. So I loop through the coordinates and create a tile for each set of coordinates. for ix in [0..60] for ...
0
votes
3answers
23 views

kinetic.d.ts for plugin label missing

I downloaded Kinetic.d.ts from Kinectic.d.ts It's missing Label plugin so I'm trying to create it. I created: class Label extends Group { constructor(config: LabelConfig); setText(text: ...
0
votes
0answers
24 views

KineticJS: Make stage draggable, but keep a certain shape in its original position

I was wondering if it is possible to make the whole stage draggable, but keep one shape/group/layer in its original position without dragging it around with the draggable stage? I also started an ...
0
votes
1answer
28 views

TypeScript and Kinetic .on click error

I'm getting errors with TypeScript and using the click event on a Kinectic.Text. Here's my Text: var myButton = new Kinetic.Text({ // set properties here... }); Here's the problem code: ...
2
votes
1answer
71 views

How to apply KineticJS filter ?

I find the KineticJS filters documentation extremely frustrating and could not find examples online, especially considering brightness. The kinetic.filters docs link mention a ...
0
votes
0answers
26 views

Call kineticjs Javascript after Ajax in Rails

I have a Kineticjs canvas which I am adding images to based on click events and it works fine. The problem is when I load a new group of images with Ajax using remote in Rails, the javascript event is ...
0
votes
1answer
39 views

Determine image offset

I've got a large circle with an image as a fill pattern. The circle is rotated. When I click inside the circle I wish to create a smaller circle which contains the same image and the same offset. ...
0
votes
0answers
49 views

How to add a drawing function to KineticJS Image

I am trying to create a function in Kinetic JS Image to redraw the image. I am trying to create a warp / curve effect and I need to redraw the image. My approach is slicing the image and moving each ...
5
votes
1answer
146 views

Smooth KineticJS animation, controlled speed

I am creating a simple plane animation in KineticJS for the fun of it. Currently the animation runs a little jerky I would love to have some easing or tweening although I don't know how to begin. ...
0
votes
1answer
54 views

How do you update HTML5 canvas from angular?

I have a little canvas that draws a cross and an input box to control the angle of rotation. <input type='text' ng-model='angle'> <canvas id="myLitleCanvas" width="200" ...
0
votes
1answer
52 views

KineticJS web-app with draggable content is extremely laggy and keeps crashing android & iPhones

I've made an app with one layer per page and a swipe functionality to switch between them (like Android Homescreen) and it works great on my desktop-pc with Google Chrome. The major problem is, that ...
0
votes
1answer
26 views

How to move a kineticjs circle?

1) Why obj.setX(newx) does not move my kineticjs circles? I am now using obj.transitionTo function calls. 2) Why transitionTo moves my circle even without layer.drawScene ? setRadius is also not ...
0
votes
1answer
31 views

Better way to draw a quadratic Curve in KineticJS?

I am writing an app in which I have to draw a lot of draggable quadratic curves. I am using Kinetic.Shape for this (KineticJS 4.4.3). Since the performance is not great I tried to analyze and ...
0
votes
1answer
51 views

KineticJS text as links?

Is there anyway to make the texts and/or shapes be hyperlinks? Being that when they are clicked, they bring up new browser and when you hover over them, they show location of the url?

1 2 3 4 5 17