📜  p5.js | keyTyped()函数

📅  最后修改于: 2022-05-13 01:56:21.854000             🧑  作者: Mango

p5.js | keyTyped()函数

每次按下键时都会调用keyTyped()函数,但方向箭头键、Ctrl、Shift、Alt、Backspace 和 Delete 键等操作键除外。最近键入的键存储在“键”变量中。

请注意,按住一个键可能会导致多个 keyTyped() 调用。这是由于操作系统如何处理按键并取决于计算机的配置方式。浏览器可能有自己的默认行为附加到各种键,可以通过在方法末尾添加“return false”来防止。

句法:

keyTyped()

参数:此方法不接受任何参数。

下面的例子说明了 p5.js 中的keyTyped()函数

例子:

function setup() {
  createCanvas(600, 200);
  textSize(20);
  text("Press any key to display it on the screen", 10, 20);
  text("Any of the action keys would not be recognized", 10, 40);
}
  
function keyTyped() {
  clear();
  textSize(20);
  text("Press any key to display it on the screen", 10, 20);
  text("Any of the action keys would not be recognized", 10, 40);
  textSize(100);
  text(key, 100, 150);
}

输出:
显示型

环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

参考: https://p5js.org/reference/#/p5/keyTyped