0
votes
1answer
99 views

HTML5 Canvas Drag and Drop with snap into position images

http://www.html5canvastutorials.com/labs/html5-canvas-animals-on-the-beach-game-with-kineticjs I am wanting to have this for my HTML5 IOS Application. This requires the widget work offline. When I ...
0
votes
1answer
30 views

KineticJS - How to find out which object were dragged?

is there some possibility, how to realise, which object were moved? If I had for example 5 object on canvase and I would move one object, is there any information about what changed since any time? ...
0
votes
0answers
27 views

Kinetics JS When removing one shape all other shapes becomes undraggable

here is the issue. I have a function called formItemGroup() and everytime I click on a button, this function will run, and create a grouped draggable item on the canvas. Everything was working just ...
0
votes
1answer
152 views

Drag while in background in KineticJs

I have two layers generally representing a large background and some content on top of it. I have made the background draggable but when dragged, it covers the content of the other layer. Is it ...
0
votes
1answer
482 views

Make Image drawn on Html5 Canvas Draggable with javascript

am a javascript newbie.I was able to successfully draw an image on an html canvas.But i need to be able to drag the image about on the canvas.I know this function can be implemented easily by some ...
0
votes
1answer
178 views

Html Canvas RequestAnimationFrame: Usable for draggable content?

I'm creating a map of sorts, using Html5 2d Canvas. The main features are zooming, and dragging. My problem is dragging the map is very jerky. I don't know if or how I could use requestAnimation ...
0
votes
0answers
130 views

change canvas context ondrag function

I want to create so kind of interactive image with canvas that the canvas will change when you move the mouse from bottom to top or from left to right. I took an animated gif and took every frame to ...
0
votes
0answers
511 views

HTML5 Canvas drag and drop line

I use this code to load line description from .json file and draw the described line on Canvas: <html> <head> <script type="text/javascript" src="jQuery.js"> </script> ...
0
votes
0answers
121 views

UIElement.clip and cliptobounds = false will work together?

I am doing a drag and drop application in WPF. There are different user controls in toolbox. The toolbox controls can be dragged to canvas and outside canvas and everything was worked fine. To make ...
1
vote
2answers
404 views

How can I select and drag a line in canvas?

I'm now working on a painting app. It uses a html canvas. Users can draw shapes on the canvas. Now a problem comes to me. I want to select the line that I drew on the canvas. When it is selected, I ...
1
vote
1answer
1k views

Change cursor over HTML5 Canvas when dragging in Chrome

I was looking at how to change the cursor over an HTML5 canvas when dragging the mouse... Came across this: Change cursor over HTML5 Canvas when dragging the mouse seemed logical that an :active ...
3
votes
1answer
2k views

javascript + html5 canvas: drawing instead of dragging/scrolling on mobile devices?

I'm using a html5 canvas + some javascript (onmousedown/move/up) to create simple draw pad on a webpage. Works OK in Opera, Firefox, Chrome, etc (tried on desktop PCs). But if I visit this page with ...
1
vote
2answers
2k views

Drag Image in HTML5 Canvas with defined Boundaries

I am working on HTML5 Canvas 2D, is there any function which can help to do like example given in below link - ...
0
votes
1answer
790 views

Drag image on canvas

I'm trying to drag an image around a canvas element. Although I've had dragging working, it's not working as I'd quite like. Basically, the image is always bigger than the canvas element, but the ...
0
votes
1answer
556 views

Drag and Drop the Canvas around the browser screen

I'm new to Raphael as well as to JS.. I need to be able to drag the Canvas itself, not the object in it, to various locations on the screen. I looked everywhere on the web and can't find a clue. Of ...
2
votes
1answer
840 views

Making an image drawn in canvas draggable/resizable?

I've done this JSFiddle for you to make it easier to explain. http://jsfiddle.net/eAV6w/30/ There are two images, one on top which is a grey surround with a transparent rectangle in the middle. ...
0
votes
0answers
319 views

Double click and drag events in HTML5 canvas

I want to catch double click and drag events on the canvas. How can I do this?
2
votes
2answers
562 views

“googlemaps” dragging with html5 canvas

I have a large html5 canvas (much larger than the screen), and I want to implement a "google-maps" dragging. I want the canvas to be dragable by mouse, and I want it to render only the part we can see ...
0
votes
1answer
371 views

How do I stop (no-)dragging in javascript?

I'm working on an online javascript canvas (not the HTML5 element, but a painting canvas). When the user starts painting, he clicks and moves the mouse from one side of the canvas to the other. This ...
1
vote
2answers
1k views

how to detect which side of 3d cube was clicked?

I am writing a small 3d "engine" in canvas.. not really an engine, but more of an application based on code from Eric Pascarello's demo (hit number "7" a few times to see it rotating) it's all going ...
6
votes
3answers
9k views

Drag objects in canvas

Im looking for an easy to use method of assigning drag behavior to multiple objects (images, shapes etc) in canvas. Does anyone have a good way or know of any libraries for dragging objects around? ...
1
vote
3answers
2k views

WPF Draggable Panel Class

I'm trying to write a panel class from this two resources: http://stackoverflow.com/questions/1871358/wpf-how-to-make-the-0-0-in-center-inside-a-canvas ...
6
votes
2answers
4k views

How can i check if 2 controls overlap eachother on a canvas in WPF?

I am writing a designer that enables the user to drag controls around the screen. What would be the best way of detecting if a control is overlapping another control while i am dragging the one ...
5
votes
2answers
4k views

How to drag a UserControl inside a Canvas

I'm writing my first WPF application. I have a Canvas in which user can add UserControl subclasses containing a form. User should be able to drag these UserControl around the Canvas. What's the best ...
0
votes
5answers
1k views

Slow Canvas Element

Using the Canvas element, I draw a line from one element to another element Another element is draggable, and when dragging the element the line follows the draggable element. My problem is that the ...