ריבועים מתקפלים

ריבועים מתקפלים הוא מחוון טעינה מתוך טעינה והמתנה של כליקס. מה שמורידים הוא קטע HTML ו-CSS בלי תמונות ובלי GIF. אין ספרייה חיצונית, אין שלב בנייה, ואם כליקס ייעלם מחר הקוד ימשיך לעבוד.

מחוון טעינה · גיאומטרי · טעינה

.klix-cube-fold { position: relative; width: 2.6rem; height: 2.6rem }
.klix-cube-fold span { position: absolute; width: 50%; height: 50%; background: currentColor;
  animation: klix-cube-f 1.6s ease-in-out infinite }
.klix-cube-fold span:nth-child(1) { top: 0; left: 0; transform-origin: 100% 100% }
.klix-cube-fold span:nth-child(2) { top: 0; right: 0; transform-origin: 0 100%; animation-delay: .2s }
.klix-cube-fold span:nth-child(3) { bottom: 0; right: 0; transform-origin: 0 0; animation-delay: .4s }
.klix-cube-fold span:nth-child(4) { bottom: 0; left: 0; transform-origin: 100% 0; animation-delay: .6s }
@keyframes klix-cube-f { 0%,100% { transform: scale(1); opacity: 1 } 50% { transform: scale(.2); opacity: .3 } }