TypedJs批量输入效果不起作用

时间:2018-03-13 22:24:38

标签: javascript html

我会在页面末尾进行批量输入效果,例如this example

export class AProposComponent implements OnInit {
  @ViewChild('text', { read: ElementRef }) text: ElementRef
  constructor() {}

  ngOnInit() {
    let textEl = this.text.nativeElement
    let typed = new Typed(textEl, {
      strings: ['npm install...^1000<br> `installing components...` ^1000 <br> `Fetching from source...`'],
      typeSpeed: 40,
      backSpeed: 0,
      loop: true
    })
  }
}

我获得了正常的打字效果(如第一个例子)

npm install...
`installing components...`
`Fetching from source...`

如何使用Typesjs制作批量类型效果?

1 个答案:

答案 0 :(得分:1)

你的榜样应该可以正常工作。

使用\n和css样式white-space: pre;代替<br>以避免闪烁效果。

请参阅this jsfiddle,对我来说,与在typedjs示例中的工作方式相同