You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
نمونه کد افکت رنگی متحرک بر روی کلمات با html,css
<style>
@keyframes colorChange {
0% {color: red;}
25% {color: blue;}
50% {color: green;}
75% {color: yellow;}
100% {color: orange;}
}
h1 {
animation: colorChange 5s infinite;
}...