0
votes
0answers
108 views

html class and type declare in javascript

I want to declare a HTML class inside my javascript. Here is my HTML code: <a class="various" data-fancybox-type="iframe" href="lesson1\umbrella_fund.html"><"my link ...
0
votes
0answers
27 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 ...
-1
votes
0answers
68 views

How to rotate image with jquery and display it with kineticjs [closed]

I want to know, is there any way how to rotate image with jquery ?, and display that rotate image with kineticjs function
-1
votes
0answers
40 views

Kineticjs clone elements and drag them [closed]

i wanted to make an AgeofEmpire like game with kineticjs but my problem is the drag and drop to the map. In jquery you have the helper:clone element for draggable elements ...
0
votes
1answer
49 views

How to bind an event of jquery with html5 kinetic shape?

I have a html 5 canvas where i have a polygon . I want to bind this polygon with jquery. but i am not getting how to do it. Polygon: var poly = new Kinetic.Polygon({ points: ...
0
votes
1answer
53 views

jquery allow user to download kinecticjs 'canvas'

I am trying to allow the user to save their kinecticjs creation using client side scripting. I tried bytescout to generate a pdf, but I do not think it allows using a kineticjs stage. So I guess I ...
5
votes
2answers
330 views

How can i stop all audio playing using Jquery

I'm updating a div in a page using jquery mobile in order to play some animations. The animations also play sound through use of document.createElement('audio'); My problem is, when I update the ...
0
votes
0answers
171 views

jquery kinetic enable standard vertical touch swipe

I use jquery kinetic to have a smooth horizontal div scroll (https://github.com/davetayls/jquery.kinetic). It works great. However, on a touch device, jquery kinetic disable the normal vertical ...
1
vote
2answers
131 views

Add more images on Canvas with Kinetic

Im making an app, but I ve met the problem. I need when I hit a button add new point (image) on my Canvas. Here is a code: var ID = 0; var points = []; function addPoint(){ points.push({id: ID, ...
0
votes
1answer
39 views

How can I setDraggable(false) on layer by name

I have a problem in my program. I want to setDraggable of layer to false. But I have no idea how to set it. I created the layer when user clicks the button. And the layer has a different name. The ...
0
votes
1answer
156 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 : ...
2
votes
0answers
77 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. ...
1
vote
2answers
235 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
185 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
vote
1answer
324 views

JQuery, Kinetic.js, and MSPointer events (how to addEventListener, or will on() work?)

I'm having a heck of a time troubleshooting a little canvas element for touch events on Win8 (specifically the Surface tablet). Apparently it works with the mouse or the stylus, but not with touch. I ...
0
votes
1answer
409 views

Draw shapes with mousemove, drag and drop and resize with kineticjs- KineticJS

I am working on a simple paint program with KineticJS. What I have to achieve is to draw a rectangle, line or circle with mouse movement and the drawn shapes can be dragged or resized by mouse. My ...
0
votes
1answer
53 views

KineticJS setting stroke programatically

I have some text, that has a class in the form of "link variabletext" (where variabletext is unique to each link). I'm trying to set this up so that when I mouseover the text, the corresponding object ...
0
votes
1answer
155 views

Upload toDataUrl image through jquery

I'm trying to create an image out of my canvas, but i can't seem to get a working uploaded PNG on the backend after some tries. Could someone look at what's going on here? My javascript: ...
1
vote
1answer
100 views

drawing within a drawing

I am attempting to build an application that will allow be to draw a drawing within, a drawing within, a drawin etc... What i have so far is on jsfiddle http://jsfiddle.net/viciouskinid/MYYRa/ ...
0
votes
2answers
168 views

how to use draggable and double click together in kineticjs?

how to use draggable and double click together in kineticjs? when using draggable then double click will not work. Here is my code to draw the image.. function draw(images) { abcImg= new ...
0
votes
2answers
103 views

How to draw in one loop walls around the stage canvas(html5, kineticJS)

<script src="/js/kinetic-v4.3.3.min.js"></script> <script> $(document).ready(function(){ var gravity = 0.5; var stage = new Kinetic.Stage({ container: 'stage', ...
0
votes
1answer
278 views

KineticJS: right click fires click

I'm using Kineticjs and I'm defining a rect event like this this.rect.on('click tap', function(){ foo(); }); The event is fired when I left-click, but also when right-click. How can I avoid to fire ...
0
votes
1answer
216 views

KineticJs change Image Object

I am trying to replace an existing image object on a kineticJS stage/layer with a new image when the user choose an item in a drop down menu. The code below works but when the image is changed by ...
0
votes
1answer
160 views

Detecting drop event on kineticjs from outside elements

I need to detect a drop event on a kineticjs canvas of an element being dragged from outside the canvas (a line from a select/listbox). There are plenty of drag and drop examples for kineticjs ...
1
vote
1answer
345 views

KineticJS not able to fill Polygon with Image

After updating KineticJS from v4.0.5 to v4.3.1, I can no longer fill a Polygon with an Image using this method: polygon.setFill({ image: imageObj }); I end up with a black background. Is there ...
0
votes
1answer
118 views

How to make a plugin for Kinetic.js ?(Edited)

Re posting the question again. I didn't explain the question properly before so sorry about that. Hope this will make up for it I am planning to make a plugin for Kineticjs. Now I'm not an expert at ...
2
votes
1answer
355 views

Bounds on image resize in HTML5 Canvas

I am trying to add size limits on image resize using KineticJS library. HTML5 Canvas Tutorial provides the method to resize the image: ...
1
vote
2answers
488 views

HTML5 Canvas: Draw lines from a centered DIV, connecting to other DIVs around it? (Spiderweb effect) Kinetic JS

My question is: How do I draw lines coming from a specific DIV, & having them connect to the other DIVs on the page? (Spiderweb effect) So far, I got - jsFiddle: http://jsfiddle.net/audnB/3/ But ...
1
vote
1answer
615 views

Making KineticJS stage of variable width OR update stage on resize

I have created a small KineticJS animation, which you can see at this address: http://sandbox-ben.kimbiaservices.com/kineticjs/index.html I would like to find a way for this animation to always be ...
0
votes
1answer
229 views

Crop Stage/Layer before stage.toDataURL() in KineticJS

Using stage.toDataURL() in KineticJS, a JPEG image can be generated. Problem: The generated image has to be cropped into a smaller image and saved onto the web server. Is there a way to crop the ...
1
vote
1answer
921 views

Image URL: data:image/png;base64 (KineticJS)

When using KineticJS to generate an image of the canvas, the function stage.toDataURL() gives me a URL that starts with data:image/png;base64 followed by a really long string! Question: How does the ...
-1
votes
1answer
111 views

stage.toJSON() load in html5 and kineticJS

$("#show").click(function(){ var stage = Kinetic.Node.create(json, 'container2'); var ball = new Image(); var cone = new Image(); var tshirt = new Image(); ball.onload = ...
2
votes
5answers
75 views

Changing an Object's attributes also Affects Another Object

Problem: When I change the points of a polygon poly2, it also changes the points of another polygon poly!! Why does changing one also change the other, and how do we decouple them? ...
1
vote
1answer
124 views

Change Dragged Target in KineticJS

Is it possible to switch the object being dragged to another object on clicking the first object? Problem: In the jsfiddle below, when the red circle is dragged, it changes into a blue rectangle but ...
2
votes
2answers
341 views

Removing the Stage in KineticJS

How can the KineticJS Stage be removed? Problem: stage.removeChildren() successfully removes its children like layers. However stage.remove() does not remove the stage, as shown in the jsfiddle below ...
0
votes
1answer
246 views

Constrain Image to a Path in KineticJS

Is it possible to constrain an object (like an Image) to the stroke of a Polygon? jsfiddle: http://jsfiddle.net/CZzpZ/ In the JSfiddle, I'll like the Yoda Image to has its drag constrained to the ...
1
vote
1answer
790 views

Mask/Clip an Image using a Polygon in KineticJS

Is it possible to mask/clip an Image using a Polygon in KineticJS? JSfiddle: http://jsfiddle.net/LNeML/ In the jsfiddle, the Polygon should clip the Image of Yoda. I did not see any clipping ...
4
votes
1answer
138 views

Prevent Circle from Flickering in KineticJS

When a user places his mouse cursor over/near the outline of the Polygon, an anchor should appear and follow the position of the mouse, but snapping to the outline of the Polygon. Problem: The anchor ...
6
votes
1answer
542 views

Get multiple objects from stage by class name in KineticJS

I am using using JavaScript library Kinetic.js for HTML5 canvas. Here is the method stage.get() to get objects from stage (canvas). I have assigned the id's or class names to each object if I get ...
1
vote
1answer
369 views

Add a new Point to a Polygon on Click in KineticJS

I have a polygon (square) on the Stage. When a user clicks on any edge of the polygon, a new vertex will be created at that point, increasing the number of edges by 1. Problem: How can you detect a ...
0
votes
1answer
142 views

Bind HTML element with the object that is already created

I want to add images on canvas by using library Kinetic.js The images are loaded from a database after I create the canvas. How I can bind this canvas with the elements that are created after the ...
2
votes
1answer
456 views

Detecting a Click on Stage but not on Shape in KineticJS

In KineticJS, how do you detect a Click event where the click occurs outside an object/shape? I am trying to get a Rect to change its scale to 2 when a user clicks on it, and return back to a scale ...
0
votes
1answer
395 views

Constrained/Proportional Scaling in KineticJS

When any of the 4 corner handles of the image is dragged, the image should scale proportionally either up or down. Problem: With my current attempt as shown in the jsfiddle linked below, when the ...
0
votes
1answer
170 views

KineticJS Works in Jsfiddle, not on my website

I tried a simple KineticJS example hosted on my own server, and I have a problem placing the 4 handles at the 4 corners of the Image. The handle points will be at the wrong position, as shown in the ...
0
votes
1answer
280 views

Generate canvas replication(jpg/img) from dataURL

I'd like to be able to make a little page where the user can use the drag and drop to place objects on a scene then save their canvas as an image, or post the image to facebook/pinterest. I have ...
1
vote
1answer
190 views

kineticjs extending the shape class causing uncaught range error?

This is my first time posting and I've looked as best I could for an answer to this question. I have come up empty handed. Previously I was using 3.10.2 of kineticJS. I have updated the library to ...
0
votes
1answer
56 views

Kinectic JS - How to get the scaled height of element?

I'm trying to get the scaled height/width of element in KinecticJS, but getHeight()/getWidth() only returns the original height and width, not the scaled one. Is there a function I'm missing? Thanks ...
0
votes
1answer
249 views

kineticjs add element to stage

I'm new to JS and KineticJS, and was wondering if someone could help me understand how the Kinetic.Stage node works. I've used this tutorial as a starting place -- but would like to be able to append ...
2
votes
1answer
986 views

kinetic js ipad scrolling

I previously had an HTML5 canvas based application that I recently converted to using Kinetic JS. I was able to enable scrolling in desktop browsers and IOS by simply using overflow: auto on the ...
0
votes
1answer
579 views

JQuery and KineticJS HTML5 Draw and Drag&Drop

I have designed a page to draw lines using the mouse in a canvas and drag&drop items. My main problem is i can delete just one item. The secondary problem is i cannot clone on drag the item, so i ...

1 2