728x90
CSS
@keyframes gradientSparkle {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.gradient-text {
font-size: 2rem;
background: linear-gradient(45deg, #ffcc33, #ff0066, #660099);
background-size: 300% 300%; /* 배경 크기 확대 */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradientSparkle 4s ease infinite; /* 애니메이션 속도와 효과 */
}
'A > 일' 카테고리의 다른 글
8/24 - 법무사 (0) | 2024.08.24 |
---|---|
8/23 - CSS 미디어쿼리 | 탭 디자인 (0) | 2024.08.23 |
8/21 - 댓글(최신순, 오래된순), 이름 *표시 (0) | 2024.08.21 |
8/21 - CSS (0) | 2024.08.21 |
8/19 - React | Next.js | TypeScript - 댓글 (0) | 2024.08.19 |