带有多个触发器的GSAP Draggable?

时间:2015-05-13 07:06:21

标签: javascript greensock gsap

$(".foo").each(function() {
  Draggable.create(this, {
    trigger: $(this).find(".a4")
  });
  Draggable.create(this, {
    type: 'rotation',
    trigger: $(this).find(".a0, .a2, .a6, .a8"),
    cursor: 'alias'
  });
});

如果我创建2个可拖动的,只有最后一个可以抓住。在同一个对象上有多个触发器的方法吗?

https://jsfiddle.net/w91nfmdg/

0 个答案:

没有答案