-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmultiple.html
53 lines (53 loc) · 1.72 KB
/
multiple.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
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PAG</title>
<link rel="icon" href="https://pag.io/img/favicon.png" />
<style>
body {
padding: 12px;
}
.header {
height: 64px;
border-bottom: 1px solid rgb(193, 193, 193);
margin-bottom: 24px;
}
</style>
</head>
<body>
<div class="header">
<img src="../assets/logo.png" alt="logo" width="133" height="48" />
</div>
<div>
<canvas class="canvas" id="pag"></canvas>
<canvas class="canvas" id="pag-2"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/libpag@latest/lib/libpag.min.js"></script>
<script>
window.onload = async () => {
const pagUrl = '../assets/like.pag';
const PAG = await window.libpag.PAGInit();
const buffer = await fetch(pagUrl).then((response) => response.arrayBuffer());
// First PAGView.
const pagFile = await PAG.PAGFile.load(buffer);
const canvas1 = document.getElementById('pag');
canvas1.width = 360;
canvas1.height = 360;
const pagView = await PAG.PAGView.init(pagFile, canvas1);
pagView.setRepeatCount(0);
await pagView.play();
// Second PAGView.
const pagFile2 = await PAG.PAGFile.load(buffer);
const canvas2 = document.getElementById('pag-2');
canvas2.width = 360;
canvas2.height = 360;
const pagView2 = await PAG.PAGView.init(pagFile2, canvas2);
pagView2.setRepeatCount(0);
await pagView2.play();
};
</script>
</body>
</html>