Pure js to achieve typewriter effect

Pure js to achieve typewriter effect

This article example shares the specific code of js to achieve the typewriter effect for your reference. The specific content is as follows

Rendering

Application Scenario

It's not very useful. I just saw a similar effect on the Internet and wrote 40 or 50 lines of code that I couldn't understand, so I tried to see if it could be easily implemented.

html

<h2 id="text-box"></h2>
<!--One line is also code-->
CSS

        h2 {
   width: 800px;
   line-height: 40px;
   border-bottom: 1px solid;
   margin: 200px auto;
   font-size: 24px;
  }
  
  .animate {
   display: inline-block;
   padding: 0 5px;
   vertical-align: 3px;
   font-size: 20px;
   font-weight: normal;
  }
  
  .animate.on {
   animation: fade 1.5s infinite forwards;
  }
  
  @keyframes fade {
   from {
    opacity: 0;
   }
   to {
    opacity: 1;
   }
  }

js

let textBox = $('#text-box');
let index = 0;
let str = 'Welcome to my website!';
 
  let len ​​= str.length;
 
  function input() {
 
   textBox.html(str.substr(0, index) + '<span class="animate">|</span>');
 
   setTimeout(function() {
    index++;
 
    if(index === len + 1) {
     $('.animate').addClass('on');
     return;
    }
 
    input();
 
   }, Math.random() * 600)
 
   console.log(index);
  }
 
  input();

Implementation principle

The timer is combined with string interception to achieve a typewriter-like sense of frustration, and the index is accumulated through recursion. This is equivalent to intercepting one byte at the first second, intercepting two bytes at the second second, and so on... The timer takes a random number to better simulate the pause feeling of typing. Add an end loop condition to the recursive call and start the animation before the end to simulate the cursor jumping.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • A complete example of typewriter effect implemented by JS
  • JavaScript game development: "Romance of the Three Kingdoms: The Legend of Cao Cao" component development (Part 3) Typewriter-like text output in scenario dialogue
  • JavaScript textarea typewriter effect prompt code recommendation
  • js typewriter effect code

<<:  Detailed explanation of the simple use of MySQL query cache

>>:  Detailed explanation of Docker Secret management and use

Recommend

Detailed summary of mysql sql statements to create tables

mysql create table sql statement Common SQL state...

Detailed explanation of MySQL three-value logic and NULL

Table of contents What is NULL Two kinds of NULL ...

How to use DQL commands to query data in MySQL

In this article, the blogger will take you to lea...

Tutorial diagram of installing mysql8.0.18 under linux (Centos7)

1 Get the installation resource package mysql-8.0...

Solve the problem that IN subquery in MySQL will cause the index to be unusable

Today I saw a case study on MySQL IN subquery opt...

How to convert a column of comma-separated values ​​into columns in MySQL

Preface Sometimes you come across business tables...

How to handle long data when displaying it in html

When displaying long data in HTML, you can cut off...

Summary of MySql index, lock, and transaction knowledge points

This article summarizes the knowledge points of M...

Enabling or disabling GTID mode in MySQL online

Table of contents Basic Overview Enable GTID onli...

33 ice and snow fonts recommended for download (personal and commercial)

01 Winter Flakes (Individual only) 02 Snowtop Cap...

How to use jsonp in vue

Table of contents 1. Introduction 2. Installation...

Bootstrap3.0 study notes table related

This article mainly explains tables, which are no...