12.1.0 • Published 5 months ago

angular-draggablex v12.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

npm npm

Angular-DraggableX

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

Forked from Angular-Draggable

Compatibility

Angular-DraggableXAngular
12.0.x>=12.x.x

Usages

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