@whitesev/utils 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js CHANGED
@@ -3551,7 +3551,7 @@ class Utils {
3551
3551
  this.windowApi = new WindowApi(option);
3552
3552
  }
3553
3553
  /** 版本号 */
3554
- version = "2024.8.30";
3554
+ version = "2024.9.1";
3555
3555
  addStyle(cssText) {
3556
3556
  if (typeof cssText !== "string") {
3557
3557
  throw new Error("Utils.addStyle 参数cssText 必须为String类型");
@@ -4935,6 +4935,19 @@ class Utils {
4935
4935
  return this.windowApi.globalThis.matchMedia("(prefers-color-scheme: dark)")
4936
4936
  .matches;
4937
4937
  }
4938
+ /**
4939
+ * 判断元素是否在页面中可见
4940
+ * @param element 需要检查的元素,可以是普通元素|数组形式的元素|通过querySelectorAll获取的元素数组
4941
+ * @param inView
4942
+ * + true 在窗口可视区域
4943
+ * + false 不在窗口可视区域
4944
+ * @returns
4945
+ * + true 可见
4946
+ * + false 不可见
4947
+ * @example
4948
+ * Utils.isVisible(document.documentElement)
4949
+ * > true
4950
+ */
4938
4951
  isVisible(element, inView = false) {
4939
4952
  let needCheckDomList = [];
4940
4953
  if (element instanceof Array || element instanceof NodeList) {