Posts

Showing posts from June, 2023

Reaction Tester

About Reaction Tester: The user has to click the squares as fast as he/she can. The square can appear in random sizes, directions, and colors.  This project calculates the reaction time of a person in seconds by storing the start time when the square appeared on the screen and also the end time when the user clicks the square. Finally, the user's reaction time is given as an output. Deployed  Reaction Tester  Link:   Click Here Source Code- HTML: <head>     <title> Reaction Tester </title>     <link rel = "stylesheet" href = "rxn.css" > </head> <body>     <div id = "header" >         <h1> Reaction Tester </h1>         <p> Click the boxes as soon as you can... </p>     </div>     <div id = "box" ></div>     <script src = "rxn.js" >     </script> </body> C...