forked from libpag/pag-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editable-index.html
66 lines (66 loc) · 2.46 KB
/
editable-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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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 id="content">
<canvas class="canvas" id="pag"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/libpag@latest/lib/libpag.min.js"></script>
<script>
window.onload = async () => {
const pagUrl = '../assets/snowman.pag';
const PAG = await window.libpag.PAGInit();
const buffer = await fetch(pagUrl).then((response) => response.arrayBuffer());
const pagFile = await PAG.PAGFile.load(buffer);
const canvas = document.getElementById('pag');
canvas.width = 360;
canvas.height = 360;
const pagView = await PAG.PAGView.init(pagFile, canvas);
pagView.setRepeatCount(0);
await pagView.play();
// Get editable image count.
const editableImageCount = pagFile.numImages();
let editableLayerList = [];
for (let i = 0; i < editableImageCount; i++) {
const vectorPagLayer = pagFile.getLayersByEditableIndex(i, libpag.types.LayerType.Image);
for (let j = 0; j < vectorPagLayer.size(); j++) {
const pagLayer = vectorPagLayer.get(j);
const startTime = pagLayer.startTime();
const duration = pagLayer.duration();
editableLayerList.push({ index: i, startTime: startTime, duration: duration });
}
}
// Render editable layer info.
const box = document.createElement('div');
box.style.display = 'inline-block';
box.innerText = 'Editable layer info: ';
editableLayerList.forEach((layer) => {
const item = document.createElement('div');
item.style.marginTop = '24px';
item.innerText = `index: ${layer.index} startTime: ${layer.startTime} duration: ${layer.duration}`;
box.appendChild(item);
});
document.getElementById('content').appendChild(box);
};
</script>
</body>
</html>