Answers for "angular automatic typewriter animation"

0

angular automatic typewriter animation

$ npm install angular-typing-animation --save
//app.module.ts
import { TypingAnimationDirective } from 'angular-typing-animation'
@NgModule({
  ...
  declarations: [
        TypingAnimationDirective,
    ...
    
//app.component.html
<span typingAnimation [typeSpeed]="20" [startDelay]="2000" 
  (complete)="onComplete()">
</span>
Posted by: Guest on January-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language