CSS Text Typing Animation _ Multiple Text Typing Animation

575 views Jul 2, 2023

Pure CSS Text Typing Animation | Multiple Text Typing Animation using HTML & CSS In this video, I have shown you how to create a pure css text typing animation. In this animation, there is a total of four texts and each text slide and appear with a typing animation. If you want to erase back the typed text then remove the last @keyframes codes and add this @keyframes typing { 40%, 60%{ left: calc(100% + 30px); } 100%{ left: 0; } } And also you have to change the time duration of the animations Line. 36 - Replace this line with this: animation: slide 12s steps(4) infinite; Line. 56 - Replace this line with this: animation: typing 3s steps(10) infinite;