Maison > interface Web > js tutoriel > Créez un jeu de frappe en javascript pour mesurer la vitesse wpm

Créez un jeu de frappe en javascript pour mesurer la vitesse wpm

Mary-Kate Olsen
Libérer: 2024-10-02 18:19:02
original
625 Les gens l'ont consulté

Create a typing game in javascript to measure wpm speed

Create a speed typing game in javascript

In this tutorial we are going to create a simple typing game that will measure our typing speed in wpm - words per minute, chars per minute, misspellings and will allow to improve it. We are going to use only javascript and jQuery(it's not really needed, but it will make our typing game less verbose so we can focus on the rest of the application.

We are starting by creating a simple html page:

<!DOCTYPE html>
<html>
    <head>
        <title>Typing Test WPM: How fast can you type? ⌨️?</title>
        <meta charset="UTF-8">        
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="js/jquery-3.2.1.slim.min.js"></script>
        <script src="js/typing.js"></script>
        <link rel="stylesheet" type="text/css" href="css/style.css">

    </head>
    <body >
    </body>
</html>

Copier après la connexion

Then we need to attach 2 more elements:

  1. An element where we are going to display the text that the players have to type:
    . We are going to add the text that needs to be typed using a simple javascript piece of code:
            var text2type = 'Some text that needs to be typed...';

            function init(){
                $('#txt').text( text2type );
            }

Copier après la connexion
  1. An element that needs to have the focus, where we can add an event listener to when the player press a key. We don't really need to display the element, we just need to have it in tha page and it must be visible, otherwise it can not receive the focus. However, if we don't want to show it, we will set it's width and height to 0.
<div style="position: absolute; top:0; left:0; z-index:-1;visibilitygg:hidden;">
      <textarea id="textinput" style="width:0;height:0;" oninput="updateText()"></textarea>
</div>
Copier après la connexion

Now we need to ensure, the text input element has always the focus. First we ad an event in boda=y tag that will set the focus to the textinput element when the click on the body, which practically means anywhere in the page:

We also need to set the focus when the page is loaded and ready.

$( document ).ready(function() {
    $('#textinput').focus();
});

Copier après la connexion

Now we need to code the most important part, the code which handles the typing part. The code is quite easy, it has 3 main methods:

  • the constructor which sets the text that needs to be typed and initializes some class variables.
  • the add method, which adds the new character that was typed, which can result in an error or not.
  • the render method is rendering the text with the players can a visual feedback of the progress, and they can see when then misspelled someting.
'use strict';

class TypingGame {

    constructor( text, div ) {
      this.text = text;
      this.history = "";

      this.misspelled = false;
      this.stats = [];
    }

    add(c) {

      if ( c == this.text.substring( this.history.length, this.history.length + 1 ) ){
        this.history += c;
        this.misspelled = false;
      }
      else{
        this.misspelled = true;
      }

      this.render();
    }


    render(){

        let cursorstyle = 'cursor' + ( this.misspelled ? '-misstyped' : '' );

      $('#txt').html( 
        '<span class="typed">' + this.history + '</span>' +
        '<span class="' + cursorstyle + '">' + this.text.substring( this.history.length, this.history.length + 1 ) + '</span>'
        + '<span class="totype">' + this.text.substring( this.history.length + 1 ) + '</span>'
      );

    }


  }
Copier après la connexion

For the next part, we need to update the typer object, when a new letter is inputed in the textinput element(remember we have a listner there ).

            function updateText(){

                let c = $('#textinput').val();
                if ( c.length > 0 ) {
                    typer.add( c.slice(-1) );
                }
                $('#textinput').val('');
                showCurrent()
            }
Copier après la connexion

Now we have the first prototype with the game mechanics of a working typing game. In the next section we are going to add some more elements to measure the typing speed in words per minutes and characters per minute(wpm and cpm) and to display the performance on a nice dialog.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:dev.to
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal