style.css in Animations (JS/CSS) 8
/* Typewriter effect class */ .animationsTypewriter{ animation: type 4s steps(60, end); overflow: hidden; white-space:nowrap; } @keyframes type{ from { width: 0; } to { width: 100%; } }
File
css/theme/style.cssView source
- /* Typewriter effect class */
- .animationsTypewriter{
- animation: type 4s steps(60, end);
- overflow: hidden;
- white-space:nowrap;
- }
- @keyframes type{
- from { width: 0; }
- to { width: 100%; }
- }