快速處理 CSS 的秘訣!動畫載入器

讓我們使用範圍限定的自訂屬性和 animation-timing-function 製作動畫 CSS 載入器

前往 CodePen 並建立新的筆記。

為載入器建立標記。請注意內嵌自訂屬性的使用方式:

<div class="loader" style="--count: 10">
  <span style="--index: 0"></span>
  <span style="--index: 1"></span>
  <span style="--index: 2"></span>
  <span style="--index: 3"></span>
  <span style="--index: 4"></span>
  <span style="--index: 5"></span>
  <span style="--index: 6"></span>
  <span style="--index: 7"></span>
  <span style="--index: 8"></span>
  <span style="--index: 9"></span>
</div>

您也可以使用產生器 (Pug) 設定行數:

- const COUNT = 10
.loader(style=`--count: ${COUNT}`)
  - let i = 0
  while i < COUNT
    span(style=`--index: ${i}`)
    - i++

為我們的載入器提供一些樣式:

loader {
  --size: 10vmin;

  height: var(--size);
  position: relative;
  width: var(--size);
}

使用絕對定位和 calctransform 的組合來定位線條:

.loader span {
  background: grey;
  height: 25%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
             rotate(calc(((360 / var(--count)) * var(--index)) * 1deg))
             translate(0, -125%);
  width: 10%;
}

根據 --index 套用不透明度:

.loader span {
  opacity: calc(var(--index) / var(--count));
} 

讓一切運作起來!

.loader {
  animation: spin 0.75s infinite steps(var(--count));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

請注意,您必須使用 steps(var(--count)) 才能獲得正確的效果 ✨

完成!🎉

想要在推文中填寫嗎?🐦

祝你玩得開心!ʕ •ᴥ•ʔ