Hey, after running the below code I'm able to see the image details, but could you tell me how can I stop or play again some animation? I can see the play method, but I'm unable to do trigger it:
APNG.parseURL(src).then(function(data) {
console.log(data);
});
Should I somehow assign it to a variable like const player = APNG.parseURL(src); and then use it by player.play(); if needed or how it works?
Hey, after running the below code I'm able to see the image details, but could you tell me how can I stop or play again some animation? I can see the
playmethod, but I'm unable to do trigger it:Should I somehow assign it to a variable like
const player = APNG.parseURL(src);and then use it byplayer.play();if needed or how it works?