일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- react
- hover
- button
- xcode
- front-end
- 애니메이션
- 비전공자
- image
- iOS 개발자
- keyframes
- 프론트엔드
- 백엔드
- IOS
- iPhone
- 풀스택
- html5
- javascript
- 자바스크립트
- php
- css3
- HTML
- SWIFT
- effect
- jQuery
- ipad
- 개발자
- Animation
- CSS
- MAC
- 비전공 개발자
- Today
- Total
목록로딩 (3)
비전공자 개발일기

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #151515; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .ghost { animation: float 3s ease-out infinite; } @keyframes float { 50% { transform: translate(0, 20px); } } .shadowFrame { width: 130px; margin-top: 15px; } .shadow { animation: shrink 3s ease-out infinite; transform-origin: ce..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #667ABA; } .loader { position: relative; width: 120px; height: 120px; } .loader span { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(calc(18deg * var(--i))); } .loader span::before { content: ''; position..

body { background: black; } .progress { --progress: 0%; width: 500px; height: 50px; margin: 9em auto; border: 1px solid #fff; padding: 12px 10px; box-shadow: 0 0 10px #aaa; } .progress .bar { width: var(--progress); height: 100%; background: linear-gradient(gold, #c85, gold); background-repeat: repeat; box-shadow: 0 0 10px 0px orange; animation: shine 4s ease-in infinite, end 1s ease-out 1 7s; t..