250x250
Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- keyframes
- jQuery
- IOS
- xcode
- CSS
- iPhone
- 자바스크립트
- iOS 개발자
- effect
- front-end
- ipad
- css3
- hover
- javascript
- MAC
- 백엔드
- html5
- react
- 프론트엔드
- SWIFT
- HTML
- php
- image
- 비전공 개발자
- 비전공자
- 개발자
- Animation
- button
- 애니메이션
- 풀스택
Archives
- Today
- Total
비전공자 개발일기
Gradient Background Animation 본문
728x90
SMALL

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradient BG Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="animated-background"></div>
</body>
</html>
.animated-background {
background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
background-size: 400% 400%;
animation: animate-background 10s infinite ease-in-out;
}
@keyframes animate-background {
0% {
background-position: 0 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}728x90
LIST
'HTML _CSS' 카테고리의 다른 글
| Profile Card (0) | 2022.04.28 |
|---|---|
| Endless Road Animation (0) | 2022.04.26 |
| Text Hover Effect & Shake On Invaild Input (0) | 2022.04.23 |
| Shadow BTN (0) | 2022.04.22 |
| Edge Motion (0) | 2022.04.20 |