角用法* ngFor用于多个li中的mouseenter和mouseleave残基

时间:2018-12-28 02:01:54

标签: javascript angular html-lists ngfor

enter image description here

角度用途* ng对于多个li中的mouseenter和mouseleave残留物,我不知道是什么原因,请帮助我,谢谢。

前端使用* ng上的角度框架,mouseenter,mouseleave要生成多个li,在显示多种背景颜色时会快速滑动,我试图替换mouseover mouseout,但不是

  <ul>
 <li class="file-list-item" *ngFor="let file of searchService.fileLists;let i = index"                                (mouseenter)="file.hoverVisual=true;unfoldItem=false" (mouseleave)="file.hoverVisual=false;unfoldItem=false"
 fxLayout="row" fxLayoutAlign="start center">
  <div class="item-title-big" *ngIf="!file.isshowTitle" fxLayout="row" fxLayoutAlign="start center">
   <div class="panel-checkbox" #chbox>
...
  </div>
 </li>
</ul>

当我多次滑动时,我只希望显示li的一个变化,但是当我快速滑动时,我要显示两个以上的li的变化。

0 个答案:

没有答案