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


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


html()函數用於通過替換任何現有的html來設置元素的內部HTML。如果第二個參數的值為true,則將附加html而不是替換現有的html元素。如果此函數不包含任何參數,則它將返回元素的內部HTML。

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

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

用法:


html()

或者

html( html, append )

參數:

  • html:此參數以字符串格式保存HTML元素,需要將其放置在元素內。
  • append:此參數保存布爾值以追加現有的HTML元素。

返回值:此函數返回一個字符串,其中包含元素的內部HTML。

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

範例1:

function setup() { 
      
    // Create a canvas of given size 
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    var div = createDiv(''); 
      
    // Use html() function 
    div.html('Welcome to GeeksforGeeks');    
    
    // Set the position of div element 
    div.position(60, 80);  
    
    // Set font-size of text 
    div.style('font-size', '24px'); 
    
    // Set font-color of text 
    div.style('color', 'white'); 
  
} 

輸出:

範例2:

function setup() { 
      
    // Create canvas of given size 
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    var div = createDiv('').size(200, 70); 
  
    // Use html() function     
    div.html('Welcome to GeeksforGeeks', true);    
    
    // Set the position of div element 
    div.position(100, 60);  
    
    // Set font-size of text 
    div.style('font-size', '24px'); 
    
    // Set font-color of text 
    div.style('color', 'white'); 
    
    div.style('border', '1px solid white'); 
    
    div.style('text-align', 'center'); 
  
} 

輸出:



相關用法


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