זוהר צפוני הוא אנימציית CSS מתוך אנימציות של כליקס. מה שמורידים הוא בלוק keyframes ומחלקה אחת שמפעילה אותו. אין ספרייה חיצונית, אין שלב בנייה, ואם כליקס ייעלם מחר הקוד ימשיך לעבוד.
אנימציית CSS · רקע · עדין
/* זוהר צפוני */
@keyframes klix-aurora { 0%,100% { transform: translate(-10%,-10%) rotate(0) } 50% { transform: translate(10%,10%) rotate(25deg) } }
.klix-aurora {
position: relative; overflow: hidden; background: #0b1220;
}
.klix-aurora::before { content: ''; position: absolute; inset: -50%;
background: conic-gradient(from 0deg,#22d3ee,#a78bfa,#f472b6,#22d3ee);
filter: blur(46px); opacity: .55; animation: klix-aurora 12s ease-in-out infinite }