attribute()函數用於在指定元素上添加新屬性或更改現有屬性的值。如果屬性未指定任何值,則返回給定屬性的值;如果未設置屬性,則返回null。
注意:此函數需要p5.dom庫。因此,在index.html文件的開頭部分添加以下行。
<script language=”javascript” type=”text/javascript” src=”path/to/p5.dom.js”></script>
用法:
attribute()
或者
attribute( attr, value )
參數:
- attr:該參數保存需要設置的屬性名稱。
- value:此參數保存分配給該屬性的值。
返回值:此函數以字符串格式返回attribute的值。
下麵的示例說明了p5.js中的attribute()函數:
例:
function setup() {
// Canvas size 400*400
createCanvas(400, 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 element
input_val.position(60, 80);
// Set width of input field
input_val.style('width', '250px');
// Set font-size of input text
input_val.style('font-size', '20px');
}
輸出:
相關用法
- HTML <a> rel屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML min屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 p5.js | attribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。