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


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


removeElements()函數用於刪除由p5創建的當前存在的所有元素,使用createCanvas()函數或createGraphics()函數創建的元素除外。元素及其事件處理程序將從DOM中刪除。

用法:

removeElements()

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


下麵的示例說明了p5.js中的removeElements()函數:

例:

function setup() { 
  createCanvas(600, 300); 
  textSize(26); 
  fill("green") 
  text("Click the mouse button to create elements", 10, 20); 
  text("Click on the button below to remove all elements", 10, 50); 
  
  // button to remove elements 
  removeBtn = createButton('Remove All'); 
  removeBtn.position(20, 80); 
  removeBtn.mousePressed(removeAll); 
} 
  
function mouseClicked() { 
  // create element at mouse position 
  createDiv('element').position(mouseX, mouseY); 
} 
  
function removeAll() { 
  
  // remove all elements 
  removeElements(); 
}

輸出:

在線編輯:
環境設置:

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



相關用法


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