טיפ שירות CSS מהיר! טוען אנימציה

נלמד איך ליצור מעמיס CSS מונפש עם מאפיינים מותאמים אישית ברמת ההיקף ועם animation-timing-function.

עוברים אל CodePen ויוצרים עט חדש.

יוצרים את ה-Markup של ה-Loader שלנו. שימו לב לשימוש במאפיינים מותאמים אישית בתוך שורה:

<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);
}

ממקמים את הקווים באמצעות מיקום מוחלט ושילוב של calc עם transform:

.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)) כדי לקבל את האפקט הנכון ✨

סיימתי! 🎉

רוצים לקבל את זה בפורמט של ציוץ? 🐦

המשך יום מצוין! ʕ •ᴥ•ʔ