davidmz / apng-canvas

APNG implementation on canvas.
https://davidmz.github.io/apng-canvas/
MIT License
668 stars 93 forks source link

Animation disappears #22

Closed hongchengfhc closed 4 years ago

hongchengfhc commented 4 years ago

When the apng of an acyclic animation is used, there is no problem with the first loading, and then the animation with < img > appended disappears `function addImg() { var imgD = new Image(); imgD.src = "" document.body.appendChild(imgD)

}

setInterval(function() { addImg(); }, 3000) `

davidmz commented 4 years ago

Could you provide the minimal example code on codepen.io or on similar service?

hongchengfhc commented 4 years ago

Oh, I found out it was my own problem. I'm sorry.