0

単語を変更し、定期的に異なる単語を入力するタイプ効果を作成しようとしています。例はhttp://mattfarley.ca/です。これはまさに私が作成したいものです。ご覧のとおり、タイプ効果によって単語が変更され、新しい単語が入力されます。どうすればこれを行うことができますか。これは私がこれまでに持っているものです。でも、終わった後に言葉を変える方法がわかりません。

.intro-text h1 {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation: 
typing 3.5s steps(30, end),
blink-caret .5s step-end 5;

}

/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}
4

2 に答える 2

1

type.jsを見たことがありますか?これはあなたの目的に役立ちます https://mattboldt.com/demos/typed-js/

$(function(){

    $(".box").typed({
        strings: ["Amsterdam", "Newyork", "Bengaluru", "sydney", "Try it out!"],
        typeSpeed: 30,
      loop:true,
  callback: function(){

  }
    });

});

作業例https://codepen.io/anon/pen/KQKPRe

于 2018-01-29T06:35:07.940 に答える