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 |
Tags
- keyframes
- ipad
- iOS 개발자
- button
- 비전공자
- 자바스크립트
- 비전공 개발자
- css3
- iPhone
- 프론트엔드
- Animation
- CSS
- javascript
- effect
- IOS
- 백엔드
- html5
- 개발자
- image
- jQuery
- SWIFT
- MAC
- php
- HTML
- hover
- 애니메이션
- react
- front-end
- xcode
- 풀스택
Archives
- Today
- Total
비전공자 개발일기
CSS Focus 본문
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>CSS FOCUS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>
<span><i></i>F</span>
<span><i></i>O</span>
<span><i></i>C</span>
<span><i></i>U</span>
<span><i></i>S</span>
</h2>
</body>
</html>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: monospace; */
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(45deg, #FF0057, #2196F3);
}
h2 {
position: relative;
display: flex;
gap: 5px;
color: #FFF;
font-size: 4em;
cursor: pointer;
}
h2 span {
position: relative;
filter: blur(5px);
padding: 0 5px;
}
h2 span:hover {
filter: blur(0);
transition: .5s;
}
h2 span i {
position: absolute;
inset: 0;
background-color: transparent;
}
h2 span:hover i::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 2px;
height: 8px;
background-color: #FFF;
box-shadow: 0 53px #FFF, 36px 53px #FFF, 36px 0 #FFF;
}
h2 span:hover i::after {
content: '';
position: absolute;
top: 10px;
left: 0;
width: 8px;
height: 2px;
background-color: #FFF;
box-shadow: 0 60px #FFF, 30px 60px #FFF, 30px 0 #FFF;
}
728x90
LIST
'HTML _CSS' 카테고리의 다른 글
Progress Bar (0) | 2022.07.16 |
---|---|
Rainbow Button (0) | 2022.07.15 |
Youtube Clone (0) | 2022.07.13 |
Parallax Effect (0) | 2022.07.12 |
Cubic Spinner (0) | 2022.07.10 |