如何在文本结束后停止光标

How to stop the cursor after the text is finished

我的网页有打字效果,但有点问题。文本输入完成后,闪烁的光标会一直移动到行尾。如何让它留在最后一个字母之后?

这是基本的,但也许我需要添加更多内容或修改它?

.typewriter h1{
  position: relative;
  top: 7em;
  width: fit-content;
  overflow: hidden;
  border-right: .15em solid white;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3.5s steps(100, end),
            blink-caret .75s step-end infinite;
}

@keyframes typing{
  from {width: 0}
  to {width: 100%}
}

@keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: white}
}
<div class="typewriter">
    <h1>Welcome to my website</h1>
</div>

您可以通过在 h1.And 内添加一个内联元素来执行此操作,利用 after 伪元素 属性。 希望能帮助到你。

.typewriter h1{
position: relative;
width: fit-content;
overflow: hidden;
border-right: .15em solid white;
white-space: nowrap;
margin: 0 auto;
letter-spacing: .15em;
animation: typing 3.5s steps(100, end),
            blink-caret .75s step-end infinite;
}

@keyframes typing{
from {width: 0}
to {width: 100%}
}
span:after{
  content : '-';
  animation:blinking .75s step-end infinite;
  color  :transparent;
  display : inline-block;
  width  :5px;
}
@keyframes blink-caret{
from, to {border-color: transparent}
50% {border-color: white}
}
@keyframes blinking{
from, to {background: transparent;}
50% {background: black;}
}
<div class="typewriter">
    <h1>Welcome to my website <span></span></h1>
</div>

这是因为您 .typewriter h1 的宽度设置为 100%。

使用max-width并将width设置为auto,将display设置为inline-block

.typewriter h1{
  width: auto;
  display: inline-block;
  overflow: hidden;
  border-right: .15em solid white;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: typing 3.5s steps(100, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing{
  from {max-width: 0}
  to {max-width: 100%}
}

@keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: black}
}
<div class="typewriter">
    <h1>Welcome to my website</h1>
</div>