principleThe principle of anti-shake is: you can trigger an event, but I must execute it n seconds after the event is triggered. If you trigger this event again within n seconds of an event being triggered, I will use the time of the new event as the basis and execute it n seconds later. In short, I will not execute until you trigger the event and no more events are triggered within n seconds. Case<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="IE=edge, chrome=1"> <title>debounce</title> <style> * { margin: 0; padding: 0; } #container { width: 100%; height: 200px; line-height: 200px; text-align: center; color: #fff; background-color: #444; font-size: 30px; } </style> </head> <body> <div id="container"></div> <script src="debounce.js"></script> </body> </html> function getUserAction(e) { console.log(this); console.log(e); container.innerHTML = count++; }; function debounce(func, wait) { var timeout; return function () { clearTimeout(timeout); timeout = setTimeout(() => { func.apply(this, arguments); // Solve this and event object event }, wait); } } container.onmousemove = debounce(getUserAction, 1000); This is the end of this article about JavaScript anti-shake case study. For more relevant JavaScript anti-shake content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: mysql command line script execution example
>>: MySQL controls the number of attempts to enter incorrect passwords
I used to think that script could be placed anywh...
The so-called connection limit in Nginx is actual...
1. Introduction Oracle has released MySQL 8.0GA. ...
HTML img tag: defines an image to be introduced in...
1. Summary: In general, they can be divided into ...
Table of contents 1. What are options? 2. What at...
A new window opens. Advantages: When the user cli...
WeChat applet's simple calculator is for your...
Preface: Sometimes, the session connected to MySQ...
Table of contents Preface Project Design rear end...
1. What is a two-column layout? There are two typ...
Since PHP7 came out, as a fan of the latest versi...
React Lifecycle Two pictures to help you understa...
1: Differences in speed and loading methods The di...
Preface Because of project needs, the storage fie...