在我的角度6代码中,我正在编写选取框,该选取框呈现了一组对象,这些对象在chrome中工作得很好。
但是当在firefox mozilla中运行相同的代码时,一旦到达左窗格,它就会被重新注视。
我尝试了以下方法,并搜索了很多使用的滚动,行为,循环属性,但没有奏效
<marquee *ngIf="tickerChangeFlag" onmousehover="this.stop()" onmouseout="this.start()">
<ul>
<li *ngFor="let i of arrToBind"> i.scripDescription </li>
</ul>
</marquee>