📜  p5.js 元素 mouseOver() 方法

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

p5.js 元素 mouseOver() 方法

每当用户在元素上移动鼠标指针时,都会调用 p5.js 中 p5.Element 的mouseOver()方法。它可用于将事件侦听器附加到元素。

句法:

mouseOver( fxn )

参数:此函数接受如上所述和如下所述的单个参数:

  • fxn:当鼠标移到元素上时触发的函数。也可以将false值传递给它以防止前一个函数触发。

下面的示例说明了 p5.js 中的mouseOver() 方法

例子:

Javascript
function setup() {
    canv = createCanvas(550, 300);
    textSize(20);
  
    text("Move the mouse over the element "
        + "to change its color", 20, 20);
  
    divelem =
        createDiv("This is a div element");
    divelem.position(30, 80);
    divelem.size(400, 200);
    divelem.style("border: 2px dashed");
  
    // Using the mouseOver() method
    // for a callback to changeColor()
    divelem.mouseOver(changeColor);
}
  
function changeColor() {
    divelem.style(
        "background-color: lightgreen"
    );
  
    divelem.html(
        "The mouse has been moved over the element!"
    );
}


输出:

在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
参考: https://p5js.org/reference/#/p5.Element/mouseOver