在我的网站上使用typed.js时,循环后有一个小故障 . 此外,如果showCursor属性为true,则光标出现在下一行而不是文本 .

var typed = new Typed("#typed-text", {
  strings: ["I am a Web Developer.", "I am an Engineer.", "I am a Photographer.", "I am an Entrepreneur."],
  smartBackspace: true,
  loop: true,
  typeSpeed: 80,
  backSpeed: 80,
  backDelay: 2000,
  showCursor: false,
  contentType: 'text'
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.6/typed.min.js"></script>
<p id="typed-text"></p>