first commit
This commit is contained in:
27
frontend/node_modules/rc-util/es/Dom/isVisible.js
generated
vendored
Normal file
27
frontend/node_modules/rc-util/es/Dom/isVisible.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
export default (function (element) {
|
||||
if (!element) {
|
||||
return false;
|
||||
}
|
||||
if (element instanceof Element) {
|
||||
if (element.offsetParent) {
|
||||
return true;
|
||||
}
|
||||
if (element.getBBox) {
|
||||
var _getBBox = element.getBBox(),
|
||||
width = _getBBox.width,
|
||||
height = _getBBox.height;
|
||||
if (width || height) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (element.getBoundingClientRect) {
|
||||
var _element$getBoundingC = element.getBoundingClientRect(),
|
||||
_width = _element$getBoundingC.width,
|
||||
_height = _element$getBoundingC.height;
|
||||
if (_width || _height) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
});
|
||||
Reference in New Issue
Block a user