DOMRectReadOnly API接口中的x屬性用於表示x坐標。這是一個隻讀屬性。
用法:
var recX = DOMRect.x;
返回值:它返回DOMRectReadOnly API的x坐標。
例:本示例使用DOMRect.x屬性獲取DOMRect對象的x坐標。
<!DOCTYPE html>
<html>
<head>
<title>
Web API DOMRectReadOnly x property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>Web API | DOMRectReadOnly x property</h2>
<button onclick="getDOMRect ();">
Get x-coordinate
</button>
<p id='DOMRect'></p>
<script type="text/javascript">
function getDOMRect () {
var myDOMRect = new DOMRect(0, 0, 100, 100);
var recX = myDOMRect.x;
document.getElementById('DOMRect').innerHTML
= recX;
}
</script>
<body>
</html>
輸出:
- 單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了DOMRectReadOnly x屬性支持的瀏覽器:
- 穀歌瀏覽器
- Firefox
- Safari 10.1
- Opera
相關用法
- HTML DOMRectReadOnly y用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS clear屬性用法及代碼示例
- CSS resize屬性用法及代碼示例
- CSS align-self用法及代碼示例
- CSS quotes屬性用法及代碼示例
- CSS nav-index用法及代碼示例
- CSS border-right用法及代碼示例
- CSS zoom屬性用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web API | DOMRectReadOnly x property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。