How to Create simple drag and Drop in angularjs

后端 未结 8 1595
孤独总比滥情好
孤独总比滥情好 2020-11-29 16:55

I want to know how to do drag and drop by using AngularJs.

This is what I have so far:



        
8条回答
  •  無奈伤痛
    2020-11-29 17:27

    adapt-strap has very light weight module for this. here is the fiddle. Here are some attributes that are supported. There are more.

    ad-drag="true"
    ad-drag-data="car"
    ad-drag-begin="onDragStart($data, $dragElement, $event);"
    ad-drag-end="onDataEnd($data, $dragElement, $event);"
    

提交回复
热议问题