The snapping tag has no wiki summary.
7
votes
3answers
935 views
Finding the closest grid coordinate to the mouse position with javascript/jQuery
What I'm trying to do is make a grid of invisible coordinates on the page equally spaced. I then want a <div> to be placed at whatever grid coordinate is closest to the pointer when onclick is ...
7
votes
2answers
188 views
A pythonic way how to find if a value is between two values in a list
Having a sorted list and some random value, I would like to find in which range the value is.
List goes like this: [0, 5, 10, 15, 20]
And value is, say 8.
The standard way would be to either go from ...
2
votes
3answers
113 views
Building a drag and drop puzzle-type interface with snap alignment
I'm building an Android puzzle game where the user rotates and shifts pieces of a puzzle to form a final picture. It's a bit like a sliding block puzzle but the shape and size of pieces is not uniform ...
2
votes
1answer
46 views
Snapping with CALayers
I am moving a few CALayers using the -mouseDragged method, and now I would like to "snap" them when they are sufficiently near (or when they are overlapping just a little bit).
Each layer is not a ...
1
vote
0answers
58 views
Snapping like in Android 3.0 Homescreen
the android 3.0 Homescreen has a really cool icon snapping function when dragging the icons around.
Does anyone know how to do a snapping on a view having the same behavior on the home screen?
For ...
1
vote
1answer
134 views
Android ListView scrolling
I have an Android ListView with very tall rows and it like a vertical gallery of pictures. When I fling the view I would like it to precisely stop at the start of each view. Currently it will go ...
1
vote
2answers
210 views
jquery drag and drop
I want to know how to clone and append an element to the droppable area with the following code:
$(function() {
$(".draggable").draggable();
$(".item").droppable({
drop: ...
1
vote
1answer
429 views
WPF: drawing own cursor - nontrivial problem
i need to implement a cursor with some very specific features:
it has to be animated
because after n seconds it automatically clicks - so the animation is feedback for the user when the click will ...
0
votes
1answer
58 views
javascript - Drag and drop with intelligent snap guides
I am currently building a widget that will allow users to design a layout for an application-specific task. And I would like to provide a powerpoint/keynote-esque interface (a la 280slides) for the ...
0
votes
0answers
25 views
snap image to specific point on select? [closed]
basically what i want to do, is to select an image (thumbnail, from a drop down list, whatever - that part's unimportant), and have predefined points on that image, that instantly snap it in place to ...
0
votes
0answers
39 views
Cursor snapping to links in mobile browsers
Is there a special name for this kind of behaviour?
I want to be able to have a canvas element that is easy to interact with on a mobile phone. Is there some standard way to control the areas of the ...
0
votes
0answers
287 views
HTML5 Drag 'n Drop Snapping - How to change the drag image during a drag
I have an application that requires snapping boxes to guides and there is absolutely no way I can see to do this with the html5 model as my attempts in Webkit don't let me set the drag image while ...