ImageData.width屬性用於返回ImageData對象的width屬性。 ImageData()用於創建給定大小的對象。
用法:
imageData.width
例:
<!DOCTYPE html>
<html>
<head>
<title>
Web ImageData API | ImageData.width property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>ImageData width property</h2>
<button onclick="getwidth ();">
Get width
</button>
<p id='width'></p>
<script type="text/javascript">
function getwidth () {
let imageData = new ImageData(100, 100);
document.getElementById('width').innerHTML
= imageData.width;
}
</script>
</body>
</html>
輸出:
- 單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:ImageData.width屬性支持的瀏覽器如下所示:
- 穀歌瀏覽器
- Internet Explorer 9
- 火狐14
- Safari 3.1
- Opera 9
相關用法
- HTML ImageData.height用法及代碼示例
- HTML ImageData.data用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS quotes屬性用法及代碼示例
- CSS align-self用法及代碼示例
- HTML Bdo dir用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web ImageData API | ImageData.width property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。