raphaeljs 拖放
我正在为我的网络应用程序使用 rapaeljs。 我想设置对象的可放置边界。对象可以在可放置区域移动。一旦物体进入可投放区域,该物体就应该没有出路。
I am using rapaeljs for my web app.
I want to set dropable boundries of the object. Object can move in dropable area. Once an object come in dropable area, there should be no way out for the object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Raphael 通过
.drag()
内置了拖放支持。以element.drag(start, move, up);
的形式使用它,其中 3 个参数是对您编写的分别处理 mousedown、movement 和 mouseup 事件的函数的 3 个函数引用。请注意如何使用
this.ox
和this.oy
来存储起始位置,以及如何使用dx
和dy
为了运动。以下实现了对框的拖放。盒子总是可以移动,但一旦进入“监狱”盒子,就无法再移出。当盒子进入监狱时,颜色会立即改变,以向用户表明功能已更改。
这是通过
Math.min()< 实现的/code>
和
Math.max()
在将dx
和dy
添加到当前位置后调整框的位置:您可以还要确保盒子一旦放入“监狱”盒子就无法再被拾起。这可以通过测试
move()
或start()
函数中的位置或使用c.undrag(f)
来完成在stop()
函数中。jsFiddle 示例
Raphael has built in drag and drop support through
.drag()
. Use it in the formelement.drag(start, move, up);
Where the 3 arguments are 3 function references to the functions you write that deal with the mousedown, movement, and mouseup events respectively.Note how
this.ox
andthis.oy
is used to store the starting positions anddx
anddy
is used for the movement.The following implements a drag and drop on a box. The box can always be moved, but once it's in the "jail" box, it cannot be moved back out. When the box crosses into the jail, the color is instantly changed, to signal the user that the functionality has changed.
This is implemented with a
Math.min()
andMath.max()
adjustment of the box's position afterdx
anddy
are added to the current position:You could also make it so that the box cannot be picked up again once it is put down in the "jail" box. This could be done with a test of position in the
move()
orstart()
function or the use ofc.undrag(f)
in thestop()
function.jsFiddle example