child()函數用於將元素作為子元素添加到父元素。此函數接受字符串ID,DOM節點或p5.Element。如果此函數不包含任何參數,則它將返回子DOM節點數組。
注意:此函數使用p5.dom庫。因此,在index.html文件的開頭部分添加以下行。
<script language="javascript"
type="text/javascript" src="path/to/p5.dom.js">
</script>
用法:
child()
或者
child( child )
參數:該函數接受包含字符串或p5.Element的單個參數child。 ID,DOM節點或p5.Element用於添加為當前元素。
返回值:它返回一個子節點數組。
下麵的示例說明了p5.js中的child()函數:
例:
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('GeeksforGeeks');
var myDiv1 = createDiv('A computer science portal for geeks');
// Use child() function
myDiv.child(myDiv1);
// Set the position of div element
myDiv.position(150, 100);
myDiv.style('text-align', 'center');
// Set the font-size of text
myDiv.style('font-size', '24px');
// Set the font color
myDiv.style('color', 'white');
}
輸出:
相關用法
- jQuery :only-child用法及代碼示例
- jQuery :nth-last-child()用法及代碼示例
- jQuery :last-child用法及代碼示例
- jQuery :first-child用法及代碼示例
- jQuery :nth-child()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 p5.js | child() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。