JS 在按下 Shift 时限制鼠标与轴的移动(对于可拖动元素)
当按下 Shift 按钮时,我希望用户只能严格向上/向下或向左/向右移动鼠标。 我当前的粗略想法是在按下 Shift 时拦截所有运动,并使用事件模拟来进一步传递所需的事件(仅包含所需的轴运动)。 我使用 jQuery Draggable,所以其他想法是确定何时按下 Shift 并限制可拖动本身,但这可能需要研究可拖动代码,并且可能很耗时。 有什么想法如何以更优雅的方式做到这一点?
When shift button pressed I want user to be able to only move mouse strictly up/down or left/right.
My current rough idea is to intercept all movements when shift is pressed and use events simulation to pass needed event (which will contain only needed axis movement) further.
I use jQuery Draggable so other idea is to determine when shift is pressed and restrict draggable itself but this might require investigating draggable code and might be time consuming.
Any ideas how to do this in more elegant way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过应用可拖动限制来解决(仅在 FF 中测试):
Solved by applying draggable restrictions (tested only in FF):