Replies: 1 comment
-
|
把动画丢到你们官方都没得这个问题 --> 是指官网 demo 播放 pag 文件没出现卡顿吗,那对比官网 demo 排查下用法是否有问题 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
这个是完整代码
<title>PAG 动画循环播放</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } </style> <script type="module" src="https://cdn.jsdelivr.net/npm/libpag@4.5/lib/libpag.umd.min.js"></script> <script> // 1. 定义动画配置 const pagConfig = { // 动画列表(远程 URL) animationList: ["https://res-media.cshimedia.com/cheese-fox/image/chat/不开心说话/entp4_bmp.pag"], container: document.getElementById("pag"), pagPlayer: null, // PAG 播放器实例 playMode: "sequence", // 默认顺序播放:sequence(顺序)/ random(随机) pagView: null, // 保存PAGView实例 };<!doctype html>
Beta Was this translation helpful? Give feedback.
All reactions