Is there a way to get two items to snap together?

See

I modified the code slightly so that they snap together on release

if(event['hypeGesturePhase']=='end'){
	console.log(a.id+' hit '+b.id)
	a.style.left=b.style.left
	a.style.top=b.style.top
}

hittest-1 2.zip (16.1 KB)
But if you want something to happen afterwards like an action you'll need to keep building on that with code, I'm afraid there's no other non javscript way to do this.

1 Like