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
- 애니메이션
- CSS
- effect
- SWIFT
- php
- 자바스크립트
- MAC
- css3
- ipad
- 비전공 개발자
- react
- 개발자
- html5
- 풀스택
- iOS 개발자
- jQuery
- button
- iPhone
- IOS
- 프론트엔드
- hover
- xcode
- HTML
- 백엔드
- image
- keyframes
- front-end
- Animation
- 비전공자
- javascript
Archives
- Today
- Total
비전공자 개발일기
Ring Of Fire 본문
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>RING OF FIRE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="circle"></div>
<div class="circle"></div>
<svg>
<filter id="wavy">
<feTurbulence x="0" y="0" baseFrequency="0.009" numOctaves="5" seed="2">
<animate attributeName="baseFrequency" dur="60s" values="0.02; 0.005; 0.02" repeatCount="indefinite">
</feTurbulence>
<feDisplacementMap in="SourceGraphic" scale="30">
</filter>
</svg>
</body>
</html>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
position: relative ;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #000;
}
.circle {
width: 600px;
height: 600px;
filter: url(#wavy) blur(1px);
}
.circle::before {
content: '';
position: absolute;
top: 100px;
left: 100px;
right: 100px;
bottom: 100px;
border: 20px solid #FFF;
border-radius: 50%;
box-shadow: 0 0 50px #0F0, inset 0 0 50px #0F0;
-webkit-box-reflect: below 10px linear-gradient(transparent, transparent, #0002);
animation: animate 5s linear infinite;
}
.circle::after {
content: '';
position: absolute;
top: 100px;
left: 100px;
right: 100px;
bottom: 100px;
border: 20px solid #FFF;
border-radius: 50%;
box-shadow: 0 0 10px #FFF, inset 0 0 20px #FFF;
}
.circle:nth-child(2)::before {
animation-delay: -2.5s;
}
@keyframes animate {
0% {
box-shadow: 0 0 50px #0F0, inset 0 0 50px #0F0;
filter: hue-rotate(0);
}
20% {
box-shadow: 0 0 60px #0F0, inset 0 0 60px #0F0;
}
40% {
box-shadow: 0 0 40px #0F0, inset 0 0 40px #0F0;
filter: hue-rotate(0);
}
60% {
box-shadow: 0 0 80px #0F0, inset 0 0 80px #0F0;
filter: hue-rotate(0);
}
80% {
box-shadow: 0 0 100px #0F0, inset 0 0 100px #0F0;
filter: hue-rotate(0);
}
100% {
box-shadow: 0 0 50px #0F0, inset 0 0 50px #0F0;
filter: hue-rotate(360deg);
}
}
svg {
width: 0;
height: 0;
}728x90
LIST
'HTML _CSS' 카테고리의 다른 글
| Multi Colored Text (0) | 2023.01.10 |
|---|---|
| Mail Button Micro-Interaction (0) | 2023.01.09 |
| Animated Progress Bar (0) | 2023.01.07 |
| Foggy Rain Animation (0) | 2023.01.06 |
| Dynamic Calendar (0) | 2023.01.05 |