在Web API中,有一個DOMRect接口,該接口具有一個屬性top,該屬性使我們在DOMRect對象的頂部。它返回y坐標值,或者如果高度為負,則返回y +高度。
用法:
var recX = DOMRect.top;
返回類型:
Double value
範例1:當高度為正時
<!DOCTYPE html>
<html>
<head>
<title>
DOMRect top property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOMRect top property</h2>
<button onclick="getDOMRect ();">
Get top
</button>
<p id='DOMRect'></p>
</center>
</body>
<script type="text/javascript">
function getDOMRect() {
var myDOMRect = new DOMRect(0, 0, 100, 100);
var rectop = myDOMRect.top;
document.getElementById(
'DOMRect').innerHTML = rectop;
}
</script>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
範例2:當高度為負數時
<!DOCTYPE html>
<html>
<head>
<title>
DOMRect top property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOMRect top property</h2>
<button onclick="getDOMRect ();">
Get top
</button>
<p id='DOMRect'></p>
</center>
</body>
<script type="text/javascript">
function getDOMRect() {
var myDOMRect = new DOMRect(0, 0, 100, -100);
var rectop = myDOMRect.top;
document.getElementById('DOMRect').innerHTML = rectop;
}
</script>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOMRect top屬性支持的瀏覽器:
- 穀歌瀏覽器
- Safari 10.1
- Firefox
- Opera
相關用法
- HTML DOMRect right用法及代碼示例
- HTML DOMRect left用法及代碼示例
- HTML DOMRect bottom用法及代碼示例
- HTML DOMRect fromRect用法及代碼示例
- HTML DOMRect height用法及代碼示例
- HTML DOMRect width用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS shape-outside用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web API | DOMRect top property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。