
את קוד ה – HTML הוסיפו לווידג'ט כותרת, כמובן שנו את הטסקט למה שתרצו.
HTML
Unleash the power with <span class="animated-word">animation</span>
את קוד ה – CSS הוסיפו לקוד מותאם תחת טאב מתקדם
CSS
.animated-word {
background: linear-gradient(
to right,
#ff6b81 20%,
#3c40c6 40%,
#0fbcf9 60%,
#05c46b 90%
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-fill-color: transparent;
background-size: 500% auto;
animation: AnimationName 12s ease-in-out infinite alternate;
}
@keyframes AnimationName {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}

תגובה אחת
מגניב