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


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


hide()函數是一個內置函數,用於隱藏當前元素。本質上是顯示:此樣式不使用任何顯示。

此函數需要p5.dom庫。因此,在index.html文件的開頭部分添加以下行。

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

用法:


hide()

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

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

示例1:本示例使用hide()函數隱藏div元素。

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 myDiv1 = createDiv('GeeksforGeeks'); 
    
  // Set the position of div element 
  myDiv1.position(170, 30);   
    
  // Set the div size 
  myDiv1.size(200, 100); 
    
  // Set the font-size of text 
  myDiv1.style('font-size', '36px'); 
    
  // Use createDiv() function to 
  // create a div element 
  var myDiv = createDiv('A computer science portal for geeks'); 
    
  // Set the position of div element 
  myDiv.position(180, 80);   
    
  // Set the div size 
  myDiv.size(200, 100); 
    
  // Set the font-size of text 
  myDiv.style('font-size', '24px'); 
    
  // Set the font-size of text 
  myDiv.style('border', '1px solid black'); 
    
  // Set the font-size of text 
  myDiv.style('text-align', 'center'); 
    
  // Set the font color 
  myDiv.style('color', 'white'); 
    
  // Hide the div eleemnt 
  myDiv.hide(); 
    
}

輸出:

示例2:本示例使用hide()和show()函數顯示div元素。

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 myDiv1 = createDiv('GeeksforGeeks'); 
    
  // Set the position of div element 
  myDiv1.position(170, 30);   
    
  // Set the div size 
  myDiv1.size(200, 100); 
    
  // Set the font-size of text 
  myDiv1.style('font-size', '36px'); 
    
  // Use createDiv() function to 
  // create a div element 
  var myDiv = createDiv('A computer science portal for geeks'); 
    
  // Set the position of div element 
  myDiv.position(180, 80);   
    
  // Set the div size 
  myDiv.size(200, 100); 
    
  // Set the font-size of text 
  myDiv.style('font-size', '24px'); 
    
  // Set the font-size of text 
  myDiv.style('border', '1px solid black'); 
    
  // Set the font-size of text 
  myDiv.style('text-align', 'center'); 
    
  // Set the font color 
  myDiv.style('color', 'white'); 
    
  // Hide the div element 
  myDiv.hide(); 
    
  // Show the div element 
  myDiv.show(); 
}

輸出:



相關用法


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