Mootools - 如何获取 droppables css 统计信息?

发布于 2024-11-18 19:13:53 字数 1013 浏览 1 评论 0原文

大家好,这是我的问题:

我正在使用 mootools,我正在使用这个演示 -> 拖动.Move

一切正常,但我想删除该项目并将可拖动项目的 css 位置修改为可删除项目的位置,只是无法获取可删除项目的统计信息,我不知道如何:S 这是当我放下项目时代码的位置:

    onDrop: function(element, droppable){
      if (droppable) droppable.setStyle('background', '#C17878');
    }

这就是如何设置它们,但我想要这样的东西:

    onDrop: function(element, droppable){
      if (droppable) {
                    element.left = droppable.left;  
                    element.top = droppable.top;  
                     }
    }

任何帮助都会很棒!

提前!

- 泰国蝎子。

解决了:

    onDrop: function(element, droppable){
      if (droppable) 
      {
        var snap_left = droppable.getStyle('left');
        var snap_top = droppable.getStyle('top');
        element.setStyle('left', snap_left );
        element.setStyle('top', snap_top );
      }
    }

这最终对我有用!希望它对其他人有帮助!

Hiya guys heres my question:

im using mootools and im using this demo-> Drag.Move!

everything works fine but i want to drop the item and modify the draggable items css position to that of the droppable item, just cant get the droppagble items stats i dont know how :S
here is where the code goes of when i drop the item:

    onDrop: function(element, droppable){
      if (droppable) droppable.setStyle('background', '#C17878');
    }

thats how to set them but i want something like this:

    onDrop: function(element, droppable){
      if (droppable) {
                    element.left = droppable.left;  
                    element.top = droppable.top;  
                     }
    }

any help would be great!

ty in advance!

-Thaiscorpion.

SOLVED:

    onDrop: function(element, droppable){
      if (droppable) 
      {
        var snap_left = droppable.getStyle('left');
        var snap_top = droppable.getStyle('top');
        element.setStyle('left', snap_left );
        element.setStyle('top', snap_top );
      }
    }

this worked for me in the end! hope it helps someone else!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野侃 2024-11-25 19:13:53

您可能可以使用 getStyles/setStyles 而不是 getStyle/setStyle 在一行中完成此操作。

onDrop: function(element, droppable){
  if (droppable) element.setStyles(droppable.getStyles('left', 'top'));
}

You probably could do it in one line, with getStyles/setStyles instead of getStyle/setStyle.

onDrop: function(element, droppable){
  if (droppable) element.setStyles(droppable.getStyles('left', 'top'));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文