dailyUI:倒计时 css 变量如何每秒变化?

dailyUI: How does the countdown css variable change every second?

我正在看这个 countdown timer 来自 daiyUI。

并查看 unstyled css and styled css 源代码。我找不到任何 html 或 javascript。

/* countdown.css in unstyled folder */

:root .countdown {
  line-height: 1em;
}
.countdown {
  display: inline-flex;
  & > * {
    height: 1em;
    @apply inline-block overflow-y-hidden;
    &:before {
      position: relative;
      content: "00\A 01\A 02\A 03\A 04\A 05\A 06\A 07\A 08\A 09\A 10\A 11\A 12\A 13\A 14\A 15\A 16\A 17\A 18\A 19\A 20\A 21\A 22\A 23\A 24\A 25\A 26\A 27\A 28\A 29\A 30\A 31\A 32\A 33\A 34\A 35\A 36\A 37\A 38\A 39\A 40\A 41\A 42\A 43\A 44\A 45\A 46\A 47\A 48\A 49\A 50\A 51\A 52\A 53\A 54\A 55\A 56\A 57\A 58\A 59\A 60\A 61\A 62\A 63\A 64\A 65\A 66\A 67\A 68\A 69\A 70\A 71\A 72\A 73\A 74\A 75\A 76\A 77\A 78\A 79\A 80\A 81\A 82\A 83\A 84\A 85\A 86\A 87\A 88\A 89\A 90\A 91\A 92\A 93\A 94\A 95\A 96\A 97\A 98\A 99\A";
      white-space: pre;
      top: calc(var(--value) * -1em);
    }
  }
}
/* countdown.css in styled folder */
.countdown {
  & > * {
    &:before {
      text-align: center;
      transition: all 1s cubic-bezier(1, 0, 0, 1);
    }
  }
}

问题:

  1. code/how 在哪里 --value css 变量在 css 中保持递减?
  2. 在 countdown.css 中,在 content: 行中 \A 表示什么?看起来它表示输出中的新行但是......之前从未见过
  1. code/how 在哪里 --value css 变量纯粹在 css 中保持递减?

不完全是CSS。在 JS 中完成。
如果您阅读了您提供的 countdown doc,您会看到这句话:

You need to change to --value CSS variable using JS. Value must be a number between 0 and 99

我相信他们在他们的网站上使用 svelte

  1. 在 countdown.css 的 content: 行中,\A 表示什么?看起来它表示输出中的新行但是......之前从未见过

\A 插入一个换行符。您可以在 W3 specs.
中找到更多信息 要使其正常工作,您需要 white-space: pre;:

pre
Sequences of white space are preserved. Lines are only broken at newline characters in the source and at <br> elements.