p5.js中p5.Image的reset()方法用于重新启动动画GIF并从其开始状态开始播放。它可以与按下按钮或用户输入一起使用以重新启动GIF动画。它不接受任何参数。
用法:
reset()
参数:此方法不接受任何参数。
以下示例说明了p5.js中的reset()方法:
例:
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();
}
输出:
在线编辑: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考:https://p5js.org/reference/#/p5.Image/reset
相关用法
- Lodash _.method()用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
- Javascript toString()用法及代码示例
- Javascript Number.isInteger( )用法及代码示例
- Javascript Number.isFinite()用法及代码示例
- Javascript toFixed()用法及代码示例
- Javascript toPrecision()用法及代码示例
- JavaScript Math abs()用法及代码示例
- JavaScript Math sqrt()用法及代码示例
- JavaScript Math floor()用法及代码示例
- Javascript toExponential()用法及代码示例
- JavaScript Math pow()用法及代码示例
- JavaScript Math trunc()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 p5.Image reset() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。