-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path18-throttle_debounce.html
More file actions
27 lines (26 loc) · 931 Bytes
/
18-throttle_debounce.html
File metadata and controls
27 lines (26 loc) · 931 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>_throttle & _debounce</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- Событие mousemove -->
<p class="js-coords">Кол-во вызовов onMouseMove: 0</p>
<hr />
<!-- Событие input -->
<input type="text" class="js-input" />
<p class="js-output">Кол-во вызовов onInputChange: 0</p>
<!-- scroll -->
<div class="js-list"></div>
<script
src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"
integrity="sha256-qXBd/EfAdjOA2FGrGAG+b3YBn2tn5A6bhz+LSgYD96k="
crossorigin="anonymous"
></script>
<script src="./app/18-throttle_debounce.js" type="module"></script>
</body>
</html>