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