请参见下图。我在画布上有p标签的列表。在画布下面,我有许多颜色和字体大小。
下面是我的情况
当前我执行以下代码:
1。 HTML
<ion-row #canvasRow id="canvasRow">
<ion-col *ngFor="let textarea of textAreasList; let textarea_index= index">
<p absolute-drag style="border: 1px dotted black;
height: 40px;
width: 60%;
z-index: 10000;" (click)="changeTextStyle($event)" (txtCChange)="changeTxtColor($event)"
(txtSChange)="changeTxtSize($event)">{{textarea}}</p>
<button (click)="removeTextArea(textarea_index)">Remove</button>
</ion-col>
</ion-row>
2。颜色代码选择
<ion-row id="top-toolbar">
<ion-col>
<ion-scroll scrollX="true">
<ion-buttons id="ionBtnGroup">
<button *ngFor="let colour of availableColours" icon-only ion-button (click)="changeColour(colour)">
<ion-icon [style.color]="colour" name="brush"></ion-icon>
</button>
</ion-buttons>
</ion-scroll>
</ion-col>
</ion-row>
3。字体更改代码
<ion-buttons right *ngIf="!isDraw && !isRotate" >
<button color="dark" ion-button icon-only (click)="changeFontSize(10)"><div class="galeria"><span>10px</span></div></button>
<button color="dark" ion-button icon-only (click)="changeFontSize(15)"><div class="galeria"><span>15px</span></div></button>
<button color="dark" ion-button icon-only (click)="changeFontSize(20)"><div class="galeria"><span>20px</span></div></button>
<button color="dark" ion-button icon-only (click)="changeFontSize(30)"><div class="galeria"><span>30px</span></div></button>
<button color="dark" ion-button icon-only (click)="changeFontSize(50)"><div class="galeria"><span>50px</span></div></button>
</ion-buttons>
4。字体更改功能
changeFontSize(size){
this.selectedFontSize = size+'px';
this.txtSChange.emit({size: size+'px'});
}
5。换色功能
changeColour(colour){
if(this.isDraw){
this.currentColour = colour;
}else{
this.selectedColor = colour;
this.txtCChange.emit({color: colour});
}
}
6。颜色和字体大小适用的代码
@Output() txtCChange = new EventEmitter();
@Output() txtSChange = new EventEmitter();
changeTextStyle(event: Event){
let element = event.target as HTMLInputElement;
element.style.color = this.selectedColor;
element.style.fontSize = this.selectedFontSize;
}
changeTxtColor(event){
this.selectedColor = event.color;
this.changeTextStyle(event);
}
changeTxtSize(event){
this.selectedFontSize = event.size;
this.changeTextStyle(event);
}
请让我知道是否有任何混淆。上面的代码不起作用。我想知道更有效的方法。
答案 0 :(得分:2)
我建议您在*ngFor
循环内利用ngStyle
来处理所有DOM操作样式。直接在angular内操作DOM元素被认为是不可行的。这使您可以摆脱很多操作代码。
textAreasList
中的每个元素都应该是一个包含所有必要属性(例如实际文本内容)以及样式属性(例如位置,颜色,大小等)的对象。示例:{ content: "Ravi1", style: {height: 40, width: 60, color: "#ff0000"} }
根据用户是先选择颜色,还是再次单击选择文本,或者反之,可以将所选颜色(或所选文本元素)存储在控制器中以供参考,单击(单击颜色)。
模板:
<button *ngFor="let colour of availableColours" icon-only ion-button (click)="selectedColour = colour)">
<ion-icon [style.color]="colour" name="brush"></ion-icon>
</button>
<p [...] (click)="applyStyles(textarea)">{{textarea.content}}</p>
控制器:
applyStyles(textarea){
textarea.styles.colour = this.selectedColor;
}