* Pauses an animated GIF. * * The GIF can be resumed by calling * img.play() . * * @example * let gif; * * async function setup() { * // Load the image. * gif = await loadImage('assets/nancy-liang-wind-loop-forever.gif'); * * cre
()
| 1719 | * } |
| 1720 | */ |
| 1721 | pause() { |
| 1722 | if (this.gifProperties) { |
| 1723 | this.gifProperties.playing = false; |
| 1724 | } |
| 1725 | } |
| 1726 | |
| 1727 | /** |
| 1728 | * Changes the delay between frames in an animated GIF. |
no outgoing calls
no test coverage detected