Blame view

天文台pc/tianwentai-ui/node_modules/dom-helpers/esm/isVisible.js 241 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
  /**
   * Checks if a given element is currently visible.
   * 
   * @param node the element to check
   */
  export default function isVisible(node) {
    return node ? !!(node.offsetWidth || node.offsetHeight || node.getClientRects().length) : false;
  }