browserSettings.imageAnimationBehavior

A BrowserSetting object that can be used to change the way the browser handles animated images, such as GIFs.

The underlying value is a string that can take one of three values:

  • "normal": the default. Play animated images as normal.
  • "none": don't animate images at all.
  • "once": play the animation once.

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Firefox for Android
Safari on iOS
imageAnimationBehavior

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support
No support
No support

Examples

Disable animated images:

js
browser.browserSettings.imageAnimationBehavior.set({ value: "none" });