Mon - Sun 8.00 AM - 8.00 PM
[email protected]
Home
Articles
Our Courses
HTML 5
CSS
JavaScript
MySql
PHP
Laravel
Bootstrap
Our Tutorials
PHP
JavaScript
HTML
Laravel
MySQL
JQuery
CSS
Git
Bootstrap
Vue JS
Android
Ui Code Snippets
Chat Box
Range Slider
Radio Button
Select Box
Nav Bar
Other
Testimonial
Carousel
Logo
Loader
Lightbox
Login Form
Modals
OTP Verification Form
Popular Notes
HTML
CSS
JavaScript
SQL
Services
About
Contact Us
Ui Code
Snippets
Animated typing effect using typed js
HTML
CSS
JS
Output
HTML
<!DOCTYPE html> <html> <head> <title>Animated typing effect using typed js</title> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script type="text/javascript" src="https://cdn.bootcss.com/typed.js/1.1.4/typed.min.js"></script> </head> <body> <div class="container"> <span class="txtWritting"></span> </div> </body> </html>
CSS
body{ height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; } .txtWritting{ font-size: 22px; } .container{ text-align: center; }
JS
$(function () { $(".txtWritting").typed({ strings: ["Welcome to teknowize.com!", "Thanks for visit"], smartBackspace: true, // this is a default typeSpeed: 9, }); });
Output