קו שנצבע

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

אנימציית CSS · טקסט · הדגשה · פעם אחת

/* קו שנצבע */
@keyframes klix-underline-grow { from { transform: scaleX(0) } }
.klix-underline-grow {
  display: inline-block; position: relative;
}
.klix-underline-grow::after { content: ''; position: absolute; inset-inline-start: 0; bottom: -4px;
  width: 100%; height: 3px; border-radius: 2px; background: #fbbf24; transform-origin: right;
  animation: klix-underline-grow .8s cubic-bezier(.16,1,.3,1) .2s both }