JavaScript deshaking and throttling examples

JavaScript deshaking and throttling examples

Anti-shake: only execute the last task within a certain period of time;

Throttling: Execute only once within a certain period of time;

Stabilization

<button id="debounce">Click me to debounce! </button>
 
$('#debounce').on('click', debounce());
 
function debounce() {
    let timer;
    // closure return function () {
        clearTimeout(timer);
        timer = setTimeout(() => {
            // Operations that require anti-shake...
            console.log("Anti-shake successful!");
        }, 500);
    }
} 

insert image description here

Throttling:

<button id="throttle">Click me to throttle! </button>
 
$('#throttle').on('click', throttle());
 
function throttle(fn) {
    let flag = true;
    // closure return function () {
        if (!flag) {
            return;
        }
        flag = false;
        setTimeout(() => {
            console.log("Throttling successful!");
            flag = true;
        }, 1000);
    };
} 

insert image description here

This is the end of this article about JavaScript anti-shake and throttling cases. For more relevant JavaScript anti-shake and throttling 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:
  • A brief discussion on JavaScript throttling and anti-shake
  • Difference and implementation of JavaScript anti-shake and throttling
  • JavaScript anti-shake and throttling detailed explanation
  • JavaScript anti-shake and throttling explained
  • Implementation and usage scenarios of JS anti-shake throttling function
  • What is JavaScript anti-shake and throttling

<<:  Summary of MySQL development standards and usage skills

>>:  Automatically install the Linux system based on cobbler

Recommend

WeChat applet implements simple chat room

This article shares the specific code of the WeCh...

JavaScript implements checkbox selection function

This article example shares the specific code of ...

A few things you need to know about responsive layout

1. Introduction Responsive Web design allows a we...

Several ways to solve CSS style conflicts (summary)

1. Refine the selector By using combinators, the ...

How to write the style of CSS3 Tianzi grid list

In many projects, it is necessary to implement th...

Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

1. Download the MySQL installation package First ...

js realizes the magnifying glass function of shopping website

This article shares the specific code of js to re...

How a select statement is executed in MySQL

Table of contents 1. Analyzing MySQL from a macro...

Implementation of two basic images for Docker deployment of Go

1. golang:latest base image mkdir gotest touch ma...

Bootstrap 3.0 study notes for beginners

As the first article of this study note, we will ...

Front-end vue+express file upload and download example

Create a new server.js yarn init -y yarn add expr...