Html 动画PNG(APNG)在不受支持的浏览器中回退为gif?

Html 动画PNG(APNG)在不受支持的浏览器中回退为gif?,html,animated-gif,apng,image-fallback,Html,Animated Gif,Apng,Image Fallback,所以很明显,APNg会回到第一帧 但有没有办法让它在不受支持的浏览器中恢复为gif格式,就像我们在webP中所做的那样 <picture> <source srcset="image.webp" type="image/webp"> <source srcset="image.jpg" type="image/jpeg"> <img src="image.jpg"> </picture> 这很有效!(我认为这只是因为对和

所以很明显,APNg会回到第一帧

但有没有办法让它在不受支持的浏览器中恢复为gif格式,就像我们在webP中所做的那样

<picture>
  <source srcset="image.webp" type="image/webp">
  <source srcset="image.jpg" type="image/jpeg">
  <img src="image.jpg">
</picture>

这很有效!(我认为这只是因为对
和动画png的支持非常相似(&),但它也适用于“UC浏览器Android版”,它显然支持
,但不支持APNG)