Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95249865
position.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Dec 14, 02:28
Size
1 KB
Mime Type
text/x-java
Expires
Mon, Dec 16, 02:28 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22943255
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
position.js
View Options
import
_extends
from
"@babel/runtime/helpers/esm/extends"
;
import
css
from
'./css'
;
import
getOffset
from
'./offset'
;
import
getOffsetParent
from
'./offsetParent'
;
import
scrollLeft
from
'./scrollLeft'
;
import
scrollTop
from
'./scrollTop'
;
var
nodeName
=
function
nodeName
(
node
)
{
return
node
.
nodeName
&&
node
.
nodeName
.
toLowerCase
();
};
/**
* Returns the relative position of a given element.
*
* @param node the element
* @param offsetParent the offset parent
*/
export
default
function
position
(
node
,
offsetParent
)
{
var
parentOffset
=
{
top
:
0
,
left
:
0
};
var
offset
;
// Fixed elements are offset from window (parentOffset = {top:0, left: 0},
// because it is its only offset parent
if
(
css
(
node
,
'position'
)
===
'fixed'
)
{
offset
=
node
.
getBoundingClientRect
();
}
else
{
var
parent
=
offsetParent
||
getOffsetParent
(
node
);
offset
=
getOffset
(
node
);
if
(
nodeName
(
parent
)
!==
'html'
)
parentOffset
=
getOffset
(
parent
);
var
borderTop
=
String
(
css
(
parent
,
'borderTopWidth'
)
||
0
);
parentOffset
.
top
+=
parseInt
(
borderTop
,
10
)
-
scrollTop
(
parent
)
||
0
;
var
borderLeft
=
String
(
css
(
parent
,
'borderLeftWidth'
)
||
0
);
parentOffset
.
left
+=
parseInt
(
borderLeft
,
10
)
-
scrollLeft
(
parent
)
||
0
;
}
var
marginTop
=
String
(
css
(
node
,
'marginTop'
)
||
0
);
var
marginLeft
=
String
(
css
(
node
,
'marginLeft'
)
||
0
);
// Subtract parent offsets and node margins
return
_extends
({},
offset
,
{
top
:
offset
.
top
-
parentOffset
.
top
-
(
parseInt
(
marginTop
,
10
)
||
0
),
left
:
offset
.
left
-
parentOffset
.
left
-
(
parseInt
(
marginLeft
,
10
)
||
0
)
});
}
Event Timeline
Log In to Comment