当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js remove()用法及代码示例


remove()函数是一个内置函数,用于删除元素并注销所有侦听器。

此函数需要p5.dom库。因此,在index.html文件的开头部分添加以下行。

<script language="javascript"
    type="text/javascript" src="path/to/p5.dom.js"> 
</script>

用法:


remove()

参数:该函数不接受任何参数。

以下示例说明了p5.js中的remove()函数:

示例1:本示例创建一个元素。

function setup() {   
     
    // Create Canvas of given size  
    var cvs = createCanvas(600, 250); 
} 
  
function draw() { 
    
  // Set the background color 
  background('green');  
    
  // Use createDiv() function to 
  // create a div element 
  var myDiv = createDiv('Welcome to GeeksforGeeks'); 
    
  // Set the position of div element 
  myDiv.position(150, 100);   
    
  // Set the font-size of text 
  myDiv.style('font-size', '24px'); 
    
  // Set the font color 
  myDiv.style('color', 'white'); 
    
  // Comment the remove() function  
  // myDiv.remove(); 
}

输出:

示例2:本示例使用remove()函数删除元素。

function setup() {   
     
    // Create Canvas of given size  
    var cvs = createCanvas(600, 250); 
} 
  
function draw() { 
    
  // Set the background color 
  background('green');  
    
  // Use createDiv() function to 
  // create a div element 
  var myDiv = createDiv('Welcome to GeeksforGeeks'); 
    
  // Set the position of div element 
  myDiv.position(150, 100);   
    
  // Set the font-size of text 
  myDiv.style('font-size', '24px'); 
    
  // Set the font color 
  myDiv.style('color', 'white'); 
    
  // Use remove() function to remove div element 
  myDiv.remove(); 
}

输出:



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 p5.js | remove() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。