Why is it possible to animate in browser if delay_num of apng file is 0 on web?

84 Views Asked by At

If the value corresponding to delayN is 0 in the apng information, I wonder why it is animated normally in the browser

delayN information was referring to js lib (https://github.com/davidmz/apng-js/blob/master/src/library/parser.js#L62)).

The apng-js lib corrects frame.delay to 100, but does the browser do the same? (https://github.com/davidmz/apng-js/blob/master/src/library/parser.js#L71) If delayN(delay_num) is 0, shouldn't it not work in browser(chrome)?

I want to know how to handle it in the browser(chrome)

Ref.


if the duration of apng is 0, then a crash occurred on the android app. So I was curious about the reason why it is animated normally in the browser.

0

There are 0 best solutions below