El método reset() de p5.Image en p5.js se usa para reiniciar un GIF animado y reproducirlo desde su estado inicial. Se puede usar presionando un botón o ingresando el usuario para reiniciar la animación GIF. No acepta ningún parámetro.
Sintaxis:
reset()
Parámetros: Este método no acepta ningún parámetro.
El siguiente ejemplo ilustra el método reset() en p5.js:
Ejemplo:
Javascript
function preload() { example_gif = loadImage("sample-gif.gif"); } function setup() { createCanvas(500, 300); textSize(18); example_gif.delay(15); text("Click on the button to " + "reset the animation", 20, 20); resetBtn = createButton("Reset Animation"); resetBtn.position(30, 40); resetBtn.mousePressed(resetAnimation); } function draw() { image(example_gif, 20, 60, 300, 200); } function resetAnimation() { // Reset the animation using // the reset() method example_gif.reset(); }
Producción:
Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/ referencia/#/p5.Imagen/restablecer
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA