當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js noCursor()用法及代碼示例


p5.j​​s中的noCursor()函數用於從視圖中隱藏光標。
用法

noCursor()

參數:該函數不接受任何參數。

以下示例程序旨在說明p5.js中的noCursor()函數:
示例1:


function setup() { 
  
  createCanvas(1000, 400); 
  
  // Set text size to 40px 
  textSize(20);  
  
  // Call to noCursor() function 
  noCursor();  
} 
  
function draw() { 
 background(200); 
 rect(mouseX, mouseY, 30, 30); 
  text("Position of mouse is "
  +mouseX+", "+mouseY, 30, 40); 
}

輸出:

示例2:

function setup() { 
  
  createCanvas(1000, 400); 
  
  // Set text size to 40px 
  textSize(20);  
  
  // Call to noCursor() function 
  noCursor();  
} 
  
function draw() { 
 background(200); 
 circle(mouseX, mouseY, 10); 
  text("Position of mouse is "
  +mouseX+", "+mouseY, 30, 40); 
}

輸出:

參考: https://p5js.org/reference/#/p5/noCursor



相關用法


注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 p5.js | noCursor() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。