要在Angular Material表格中实现在鼠标滚动时高亮行,你可以使用以下步骤:
ng add @angular/material
import { MatTableDataSource } from '@angular/material/table';
import { MatSort } from '@angular/material/sort';
dataSource: MatTableDataSource;
constructor() {
this.dataSource = new MatTableDataSource();
}
列1
{{element.column1}}
@ViewChild(MatSort, { static: true }) sort: MatSort;
ngAfterViewInit() {
this.dataSource.sort = this.sort;
}
highlightVisibleRows(event) {
const table = event.target;
const rows = Array.from(table.querySelectorAll('tr.mat-row'));
rows.forEach(row => {
const rect = row.getBoundingClientRect();
if (rect.top >= 0 && rect.bottom <= window.innerHeight) {
row.classList.add('highlight');
} else {
row.classList.remove('highlight');
}
});
}
tr.highlight {
background-color: yellow;
}
现在,当你在Angular Material表格中滚动时,可见行将会高亮显示。