我的资产文件夹中有 2 个 SVG 图标,HTML 中有一个用户输入框。我希望第一个图标显示为默认图标,但是当用户开始在文本框中输入内容时,我希望显示第二个图标。我很难尝试实现这一点。
有相同的搜索图标,但第一个图标只是纯白色,第二个图标是青色。
默认图标 = 搜索放大镜图标。
当用户开始输入 = search-magnifying-glass-teal-icon 时更改此设置。
我不确定是否可以直接更改 SVG 图标的描边颜色,而不是在资源文件夹中放置两个图标,但这是目前的代码。
超文本标记语言
<mat-form-field appearance="fill" style="width: 380px;" >
<input matInput [formControl]="inputCtrl" [(ngModel)]="searchText" (ngModelChange)="searchTextChanged($event)"
placeholder="Search" class="input">
<div class="icon"><img src="../../assets//images/icons/search-magnifying-glass-icon.svg"></div>
</mat-form-field>
一些 TS
ngOnInit(): void {
this._filterTags();
this.inputCtrl.valueChanges
.pipe(takeUntil(this.death$))
.subscribe((value: string) => {
this._filterTags(value);
this.updateQuery(value);
if(value == ''){
this.showColumn = false;
}else{
this.showColumn = true;
}
});
慕村9548890
相关分类