我正在尝试在鼠标悬停时播放 APNG,然后在鼠标悬停时获取 APNG 所在的帧,然后使用该帧播放反向 APNG,以便平滑过渡。我试着四处寻找,但真的找不到太多。
基本上我想做这样的事情:
<img src="regular_png.png" id="apng">
document.getElementById("apng").onmouseover = function() {
this.src = "apng1.png";
}
document.getElementById("apng").onmouseout = function() {
// Get the current frame the apng is on
this.src = "apng2.png";
// Start apng2.png from total # of frames - current frame from apng1.png
}