We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
d.txt 这是事件文件。 const replayer = new rrweb.Replayer(events, { triggerFocus:true, liveMode:true, mouseTail:false, UNSAFE_replayCanvas: true }); replayer.play(); 这个就能很好回放。
下面这种就会出现卡顿、跳帧最后卡死现像
const component = new rrwebPlayer({ target: document.body, data: { events, autoPlay: true, mouseTail: { strokeStyle: 'yellow', }, UNSAFE_replayCanvas: true }, }); window.$c = component; component.addEventListener('finish', () => window.onReplayFinish());
The text was updated successfully, but these errors were encountered:
No branches or pull requests
d.txt
这是事件文件。
const replayer = new rrweb.Replayer(events, {
triggerFocus:true,
liveMode:true,
mouseTail:false,
UNSAFE_replayCanvas: true
});
replayer.play(); 这个就能很好回放。
下面这种就会出现卡顿、跳帧最后卡死现像
d.mp4
const component = new rrwebPlayer({
target: document.body,
data: {
events,
autoPlay: true,
mouseTail: {
strokeStyle: 'yellow',
},
UNSAFE_replayCanvas: true
},
});
window.$c = component;
component.addEventListener('finish', () => window.onReplayFinish());
The text was updated successfully, but these errors were encountered: