-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.42 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
<div id="outer"></div>
<script>
const channel = new MessageChannel();
const arr = [];
const { port1, port2 } = channel;
requestAnimationFrame((time) => {
port1.postMessage(time)
Promise.resolve().then(() => {
arr.push('promise2: ' + time)
})
$outer.click();
arr.push('frame');
// Promise.resolve().then(_ => console.log('promise2')) // 注册微任务
});
port2.onmessage = (time) => {
arr.push('channel: ' + performance.now());
};
Promise.resolve().then(() => {
arr.push('promise')
})
const $inner = document.querySelector('#inner')
const $outer = document.querySelector('#outer')
function handler() {
arr.push('click') // 直接输出
}
$outer.addEventListener('click', handler)
let t = setTimeout(() => {
// clearTimeout(t);
arr.push('time: ' + performance.now());
}, 4)
let count = 0;
setTimeout(() => {
console.log(arr);
}, 500)
</script>
</body>
</html>