每次鼠标移动且未按下鼠标按钮时,都会调用p5.js中的mouseMoved()函数。
用法:
mouseMoved(Event)
参数:该函数接受单个参数Event,该参数是可选的。
以下程序说明了p5.js中的mouseMoved()函数:
范例1:本示例使用mouseMoved()函数在鼠标移至上方时更改矩形颜色。
function setup() {
// Create Canvas of size 500*500
createCanvas(500, 500);
}
let value = 0;
function draw() {
// SEt background color
background(200);
// Set the filled color
fill(value);
// Create rectangle of given size
rect(25, 25, 460, 440);
// Set the text color
fill('lightgreen');
// Set font size
textSize(15);
// Display the text
text('Move Mouse Across the page to change its value.',
windowHeight/6, windowWidth/4);
}
function mouseMoved() {
value = value + 5;
if (value > 255) {
value = 0;
}
}
输出:
范例2:本示例使用mouseMoved()函数更改椭圆的颜色。
// Declare a variable
let value;
function setup() {
// Create Canvas of size 500*500
createCanvas(500, 500);
}
function draw() {
// Set background color
background(200);
// fill color according to
// mouseMoved() function
// Set the color
fill(value, value, value);
// Draw ellipse
ellipse(mouseX, mouseY, 115, 115);
}
function mouseMoved() {
value = mouseX%255;
}
输出:
参考: https://p5js.org/reference/#/p5/mouseMoved
相关用法
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | Mouse | mouseMoved() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。