So apparently APNGs fall back to the first frame for unsupported browsers
But is there a way to make it fall back to a gif in unsupported browsers, like we do for webP?
<picture>
<source srcset="image.webp" type="image/webp">
<source srcset="image.jpg" type="image/jpeg">
<img src="image.jpg">
</picture>