Skip to content

Instantly share code, notes, and snippets.

View Messiahhh's full-sized avatar
Zzzz...

Akara Messiahhh

Zzzz...
View GitHub Profile
@Messiahhh
Messiahhh / index.html
Created October 16, 2023 07:04
屏幕录制以及前端合成
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<button id="start">开始录制</button>
<button id="end">结束录制</button>
@Messiahhh
Messiahhh / promise.js
Created May 8, 2020 07:42
Promise的核心实现
class Promise {
constructor(executor) {
if (typeof executor !== 'function') {
throw new TypeError("Promise resolver undefined is not a function")
}
this.status = 'pending'
this.value = undefined
this.onResolvedCallback = []
this.onRejectedCallback = []