-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1023 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 1023 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Forced Synchronous Layout Demo</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="toolbar">
<h1>Forced Synchronous Layout</h1>
<div class="controls">
<button id="btn-reproduce" class="btn btn--danger">Reproduce issue</button>
<button id="btn-fix" class="btn btn--success">Fixed version (double rAF)</button>
<button id="btn-reset" class="btn btn--neutral">Reset scroll</button>
</div>
<p class="hint">
Open the <strong>Performance Panel</strong> in DevTools and record while clicking each button.
</p>
</header>
<div id="scroll-container" cdkscrollable class="scroll-container">
<div id="item-list" class="item-list">
<!-- 3000 elements generated by JS -->
</div>
</div>
<script src="main.js"></script>
</body>
</html>