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
- effect
- hover
- IOS
- jQuery
- 개발자
- button
- xcode
- 풀스택
- 자바스크립트
- html5
- iPhone
- SWIFT
- 프론트엔드
- CSS
- iOS 개발자
- 백엔드
- ipad
- php
- css3
- MAC
- Animation
- image
- front-end
- javascript
- react
- 비전공자
- keyframes
- HTML
- 비전공 개발자
- 애니메이션
Archives
- Today
- Total
비전공자 개발일기
Endless Road 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>Endless Road Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="infinite">
<div class="shadow"></div>
</div>
</body>
</html>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: radial-gradient(#9bdfff, #009be4);
}
.infinite {
position: absolute;
width: 880px;
height: 160px;
background: #525252;
transform-origin: bottom;
transform-style: preserve-3d;
transform: perspective(500px) rotateX(30deg);
}
.infinite:before {
content: '';
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(90deg, #fff 0%, #fff 70%, #525252 70%, #525252 100%);
background-size: 120px;
animation: animate .5s linear infinite;
}
@keyframes animate {
0% {
background-position: 0;
}
100% {
background-position: -120px;
}
}
.infinite:after {
content: '';
position: absolute;
width: 100%;
height: 30px;
background: #333;
bottom: -30px;
transform-origin: top;
transform: perspective(500px) rotateX(-25deg);
}
.shadow {
position: absolute;
bottom: -93px;
left: 50%;
transform: translateX(-50%);
width: 95%;
height: 60px;
background: linear-gradient(#000, transparent);
opacity: .5;
}
728x90
LIST
'HTML _CSS' 카테고리의 다른 글
Love Animation (0) | 2022.04.29 |
---|---|
Profile Card (0) | 2022.04.28 |
Gradient Background Animation (0) | 2022.04.25 |
Text Hover Effect & Shake On Invaild Input (0) | 2022.04.23 |
Shadow BTN (0) | 2022.04.22 |