Blame view

天文台pc/tianwentai-ui/node_modules/motion-dom/dist/es/utils/mix/visibility.mjs 530 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  const invisibleValues = new Set(["none", "hidden"]);
  /**
   * Returns a function that, when provided a progress value between 0 and 1,
   * will return the "none" or "hidden" string only when the progress is that of
   * the origin or target.
   */
  function mixVisibility(origin, target) {
      if (invisibleValues.has(origin)) {
          return (p) => (p <= 0 ? origin : target);
      }
      else {
          return (p) => (p >= 1 ? target : origin);
      }
  }
  
  export { invisibleValues, mixVisibility };
  //# sourceMappingURL=visibility.mjs.map