An Angular Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable, Snappable.
npm install ngx-moveable
alt="Vue"
src="https://img.shields.io/static/v1.svg?label=&message=Vue&style=flat-square&color=3fb984">
An Angular Component that create Moveable, Draggable, Resizable, Scalable, Rotatable, Warpable, Pinchable, Groupable.
Demo /
Storybook /
API /
Main Project
| Moveable | |||
|---|---|---|---|
| Draggable | Resizable | Scalable | Rotatable |
![]() | ![]() | ![]() | ![]() |
| Warpable | Pinchable | Groupable | Snappable |
![]() | ![]() | ![]() | ![]() |
| Clippable | Roundable | OriginDraggable | Selecto |
![]() | ![]() | ![]() | ![]() |
sh
$ npm i ngx-moveable
`📄 Documents
* Moveable Handbook
* How to use Group
* How to use custom CSS
* How to make custom able
* API Documentation
🚀 How to use
`js
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxMoveableModule, NgxMoveableComponent } from '../ngx-moveable';@NgModule({
declarations: [
AppComponent,
NgxMoveableComponent,
],
imports: [
BrowserModule,
// NgxMoveableModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
`$3
`html
[target]="target"
[origin]="true"
[edge]="false" [draggable]="true"
[throttleDrag]="0"
(dragStart)="onDragStart($event)"
(drag)="onDrag($event)"
(dragEnd)="onDragEnd($event)"
[keepRatio]="false"
[resizable]="false"
[throttleResize]="0"
(resizeStart)="onResizeStart($event)"
(resize)="onResize($event)"
(resizeEnd)="onResizeEnd($event)"
[scalable]="false"
[throttleScale]="0"
(scaleStart)="onScaleStart($event)"
(scale)="onScale($event)"
(scaleEnd)="onScaleEnd($event)"
[rotatable]="false"
[throttleRotate]="0"
(rotateStart)="onRotateStart($event)"
(rotate)="onRotate($event)"
(rotateEnd)="onRotateEnd($event)"
[warpable]="false"
(warpStart)="onWarpStart($event)"
(warp)="onWarp($event)"
(warpEnd)="onWarpEnd($event)"
[pinchable]="false"
(pinchStart)="onPinchStart($event)"
(pinch)="onPinch($event)"
(pinchEnd)="onPinchEnd($event)"
/>
`
⚙️ Development
This project was generated with Angular CLI version 8.0.1.
Development server
Run
npm run start(ng serve) for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.⭐️ Show Your Support
Please give a ⭐️ if this project helped you!
👏 Contributing
If you have any questions or requests or want to contribute to
moveable or other packages, please write the issue or give me a Pull Request freely.$3
This project exists thanks to all the people who contribute. [Contribute].
🐞 Bug Report
If you find a bug, please report to us opening a new Issue on GitHub.
Sponsors
📝 License
This project is MIT licensed.
`
MIT LicenseCopyright (c) 2019 Daybrush
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
``