ajaysinghj8 / angular-draggable

Draggable Angular2 Directive(NgModule)
https://coderajay.github.io/ng2Draggable/
MIT License
24 stars 18 forks source link
angular angular2 angular4 directive drag draggable

Angular-Draggable

A angular directive provide html block to move on html plain.

Usages

import { NgDraggableModule } from 'angular-draggable'; 
@NgModule({                                   
    imports: [
        ....,                                
        NgDraggableModule                       
    ],
    declarations: [YourAppComponent ],
    exports: [YourAppComponent],
    bootstrap: [YourAppComponent],
})
.....
<div draggable>
    content
 </div>    
<div draggable="true">
    content
</div>    
<div draggable="false">
    content
</div>    

Example

#demo