center()函數用於將元素相對於其父元素的垂直,水平或兩者的對齊設置為中心,如果該元素沒有父元素,則根據主體設置。如果此函數不包含任何參數,則該元素將在垂直和水平方向上對齊。
注意:此函數需要p5.dom庫。因此,在index.html文件的開頭部分添加以下行。
<script language="javascript"
type="text/javascript" src="path/to/p5.dom.js">
</script>
用法:
center( align )
參數:此函數接受單個參數align,該參數包含字符串“ vertical”或“ horizontal”以對齊元素。
以下示例說明了p5.js中的center()函數:
示例1:
function setup() {
// Create canvas of given size
createCanvas(1000, 200);
// Set background color
background('green');
var div = createDiv('').size(200, 70);
div.html('Welcome to GeeksforGeeks', true);
// Set the position of div into center
div.center();
// 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');
}
輸出:
示例2:
function setup() {
// Create canvas of given size
createCanvas(1000, 200);
// Set background color
background('green');
// Create an input element
var input_val = createInput('');
// Set the attribute and its value
input_val.attribute('value', 'Welcome to GeeksforGeeks');
// Set the position of div into center
input_val.center();
// Set font-size of text
input_val.style('font-size', '24px');
// Set the width of input area
input_val.style('width', '300px');
}
輸出:
相關用法
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 p5.js | center() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。