因此,我发现了如何以编程方式触发一个涟漪效应,但是如何触发模板中存在的所有席纹波呢?
我在这里找到了如何做到这一点的方法(使用方便的堆叠闪电枪):https://stackoverflow.com/a/52959049/2362818
谢谢。
答案 0 :(得分:1)
您可以使用ViewChildren
和QueryList
查询特定类型组件中的所有元素。然后,您可以遍历它们,并对集合中的所有或任何项目调用launch
(或您需要的其他任何东西)。
list-overview-example.ts
import {Component, ViewChildren, QueryList} from '@angular/core';
import {MatRipple} from '@angular/material';
@Component({
selector: 'list-overview-example',
templateUrl: 'list-overview-example.html',
styleUrls: ['list-overview-example.css'],
})
export class ListOverviewExample {
@ViewChildren(MatRipple)
ripple: QueryList<MatRipple>;
triggerRipple() {
this.ripple.forEach(_ => _.launch({centered: true}));
}
}
list-overview-example.html
<mat-list role="list">
<mat-list-item matRipple role="listitem">Item 1</mat-list-item>
<mat-list-item matRipple role="listitem">Item 2</mat-list-item>
<mat-list-item matRipple role="listitem">Item 3</mat-list-item>
</mat-list>
<button mat-raised-button color="accent" (click)="triggerRipple()">Trigger Ripple</button>