How can you display Typing Speed using Javascript or the jQuery library?

后端 未结 4 573
离开以前
离开以前 2021-02-09 03:58

I would like to add a typing speed indicator just below the textarea we use on our contact form. It is just for fun and to give the user some interactivity with the page while t

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-09 04:56

    Typing speed is generally computed in words per minute minus a penalty for typos. To do this it seems like you'd need an inline spell-checker at the very least, plus some heavy lifting for languages and encoding schemes. (And then it starts to get complicated; when does the clock start, for instance? What do you do about people who are entering code? How about copy-and-pasting?)

提交回复
热议问题