admin管理员组文章数量:1343287
I am trying to resize a picture, but on mouse up, the picture just moves to the new position without resizing.
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}">
ponent.ts:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
onResizeEnd(event: ResizeEvent): void {
console.log('Element was resized', event);
}
}
app.module:
...
import {ResizableModule} from "angular-resizable-element";
@NgModule({
declarations: [
AppComponent,
MainComponent
],
imports: [
BrowserModule,
HttpClientModule,
AngularDraggableModule,
ResizableModule
],
providers: [GetJsonService],
bootstrap: [AppComponent]
})
export class AppModule { }
I did everything by the book
I am trying to resize a picture, but on mouse up, the picture just moves to the new position without resizing.
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}">
ponent.ts:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
onResizeEnd(event: ResizeEvent): void {
console.log('Element was resized', event);
}
}
app.module:
...
import {ResizableModule} from "angular-resizable-element";
@NgModule({
declarations: [
AppComponent,
MainComponent
],
imports: [
BrowserModule,
HttpClientModule,
AngularDraggableModule,
ResizableModule
],
providers: [GetJsonService],
bootstrap: [AppComponent]
})
export class AppModule { }
I did everything by the book
Share Improve this question edited Apr 14, 2018 at 9:59 David Walschots 12.7k5 gold badges38 silver badges59 bronze badges asked Apr 13, 2018 at 15:59 Yarden SaadaYarden Saada 1361 silver badge4 bronze badges 2- 1 Please provide a MCVE. – Iavor Commented Apr 13, 2018 at 16:05
- 1 @lavor Just updated the question to more details – Yarden Saada Commented Apr 13, 2018 at 16:16
1 Answer
Reset to default 14In case its still useful for anyone. You need to apply width and height in onResizeEnd function:
Change ponent code to this:
import { ResizeEvent } from "angular-resizable-element";
export class Component{
style: {};
onResizeEnd(event: ResizeEvent): void {
this.style = {
width: `${event.rectangle.width}px`,
height: `${event.rectangle.height}px`
};
}
}
Change HTML code to this:
<img id=image1
ngDraggable
mwlResizable
[enableGhostResize]="true"
[resizeEdges]="{bottom: true, right: true, top: true, left: true}"
(resizeEnd)="onResizeEnd($event)"
src="{{user.picture}}" [ngStyle]="style">
本文标签: javascriptmwlresizable doesn39t workStack Overflow
版权声明:本文标题:javascript - mwlresizable doesn't work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743724798a2528181.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论