-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOffsetDimensionsExample.htm
executable file
·76 lines (58 loc) · 2.3 KB
/
OffsetDimensionsExample.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Offset Dimensions Example</title>
<script type="text/javascript">
function getElementLeft(element){
var actualLeft = element.offsetLeft;
var current = element.offsetParent;
while (current !== null){
actualLeft += current.offsetLeft;
current = current.offsetParent;
}
return actualLeft;
}
function getElementTop(element){
var actualTop = element.offsetTop;
var current = element.offsetParent;
while (current !== null){
actualTop += current.offsetTop;
current = current.offsetParent;
}
return actualTop;
}
function getOffsetHeight(){
alert(document.getElementById("myDiv").offsetHeight);
}
function getOffsetWidth(){
alert(document.getElementById("myDiv").offsetWidth);
}
function getOffsetLeft(){
alert(document.getElementById("myDiv").offsetLeft);
}
function getOffsetTop(){
alert(document.getElementById("myDiv").offsetTop);
}
function getActualLeft(){
alert(getElementLeft(document.getElementById("myDiv")));
}
function getActualTop(){
alert(getElementTop(document.getElementById("myDiv")));
}
</script>
</head>
<body>
<div style="margin: 20px">
<div style="padding: 20px">
<div id="myDiv" style="width: 100px; height: 50px; background-color: red; border: 1px solid black"></div>
</div>
</div>
<input type="button" value="Get Offset Height" onclick="getOffsetHeight()">
<input type="button" value="Get Offset Width" onclick="getOffsetWidth()">
<input type="button" value="Get Offset Left" onclick="getOffsetLeft()">
<input type="button" value="Get Offset Top" onclick="getOffsetTop()">
<br>
<input type="button" value="Get Actual Left" onclick="getActualLeft()">
<input type="button" value="Get Actual Top" onclick="getActualTop()">
</body>
</html>