使用 Google 闭包库对齐拖动元素的网格
请问,
如何在 Google Closure Library 中制作可拖动元素并对齐网格?
示例:jQueryUI 有选项网格:
$(".selector").draggable({grid: [50, 20]});
Please,
how to make in Google Closure Library draggable element and snap to grid?
Example: jQueryUI has option grid:
$(".selector").draggable({grid: [50, 20]});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我需要在我的项目中执行此操作,因此发布解决方案(尽管我确信有很多)。我的方法是继承 goog.fx.Dragger 类并扩展:
代码如下:
然后,您将按照与 goog.ui.Dragger 相同的方式使用 SnapDragger
I needed to do this in my project, so posting the solution (although I am sure there are many). My approach was to inherit the goog.fx.Dragger class and extend:
The code follows:
You would then use the SnapDragger the same way as goog.ui.Dragger