Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- MADE BY DEVSTER
- https://dev.to/devster/making-type-effect-using-pure-javascript-8kc
- -->
- <!DOCTYPE html>
- <html>
- <body>
- <h1>Typewriter</h1>
- <button onclick="typeWriter()">Click me</button>
- <p id="type"></p>
- <script>
- var i = 0;
- var txt = 'your text here blah blah blah.';
- var speed = 50;
- function typeWriter() {
- if (i < txt.length) {
- document.getElementById("demo").innerHTML += txt.charAt(i);
- i++;
- setTimeout(typeWriter, speed);
- }
- }
- </script>
- </body>
- </html>
Add Comment
Please, Sign In to add comment