在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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。