Typing Text Animation
HTML CODE:-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> </head> <body> <h1>Hey I'm <span class="auto">Web Developer</span></h1> <script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script> </body> </html> |
CSS CODE:-
body{ padding: 0px; margin: 0px; min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; } h1{ color: white; } .auto{ color: yellow; } |
JS CODE:-
var typed = new Typed('.auto', { strings: ['Web Developer', 'App Developer','Software Developer'], typeSpeed: 50, backSpeed:50, loop:true }); |