我正在实现角度材质滑块以进行内容版本控制。要求添加沿着滑块轨道跟随mat-slider-thumb的气泡。最大的问题是在每个垫-滑块-拇指位置变化时触发动画。 我对角度动画非常陌生,无法启动。 我将不胜感激!
<div fxLayout="column" fxFlex="100">
<p><strong>Compare version</strong></p>
<mat-slider
[disabled]="disableSlider"
tickInterval="1"
[step]="revisionsCount"
color="primary" class="slider"
(input)="getCurrentVersion($event)">
</mat-slider>
<!-- here is the bubble that could follow along -->
<span class="slider-cloudet" *ngIf="revision !== undefined">
<mat-icon>today</mat-icon>
{{ revision.date | date: 'dd-MM-yyyy' }}
<mat-icon>restore</mat-icon>
{{ revision.date | date: 'HH:mm' }}
</span>
</div>