p5.js 中的 mouseReleased() 函數在釋放鼠標按鈕時起作用。未定義 mouseReleased() 函數時,使用 touchEnded() 函數代替 mouseReleased() 函數。
用法:
mouseReleased(Event)
以下示例程序旨在說明 p5.js 中的 mouseReleased() 函數:
範例1:本示例使用 mouseReleased() 函數來更改背景顏色。
function setup() {
// Create Canvas
createCanvas(500, 500);
}
let value = 0;
function draw() {
// Set the background color
background(200);
// Fill the color
fill(value, value-50, value-100);
// Create rectangle
rect(25, 25, 460, 440);
// Set the filled color
fill('lightgreen');
// Set the font size
textSize(15);
// Display result
text('Keep on Clicking the Mouse Across'
+ ' the page \nto change Canvas Color.',
windowHeight/10, windowWidth/4);
}
function mouseReleased() {
value = value + 5;
if (value > 255) {
value = 0;
}
}
輸出:
範例2:本示例使用 mouseReleased() 函數更改鼠標指針顏色。
let valueX;
let valueY;
function setup() {
// Create Canvas
createCanvas(500, 500);
}
function draw() {
// Set background color
background(200);
// Fill the color
fill('green');
// Set font size
textSize(25);
text('Drag mouse to change color', 30, 30);
// Fill color according to mouseMoved()
fill(valueX, 255-valueY, 255-valueX);
// Draw ellipse
ellipse(mouseX, mouseY, 115, 115);
}
function mouseReleased() {
valueX = mouseX%255;
valueY = mouseY%255;
}
輸出:
參考: https://p5js.org/reference/#/p5/mouseReleased
相關用法
- PHP imagecreatetruecolor()用法及代碼示例
- p5.js year()用法及代碼示例
- d3.js d3.utcTuesdays()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP Ds\Sequence last()用法及代碼示例
- PHP geoip_continent_code_by_name()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP GmagickPixel setcolor()用法及代碼示例
- Tensorflow.js tf.layers.embedding()用法及代碼示例
- PHP opendir()用法及代碼示例
- PHP cal_to_jd()用法及代碼示例
- d3.js d3.bisectLeft()用法及代碼示例
- PHP stream_get_transports()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js mouseReleased() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。