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