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

* { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; background-color: #111; overflow: hidden; } span { position: absolute; pointer-events: none; filter: drop-shadow(0 0 15px rgba(0, 0, 0, .6)); animation: fadeInOut 1s linear infinite } @keyframes fadeInOut { 0%, 100% { opacity: 0; } 20%, 80% { opacity: 1; } } span::before { content: ''; position: absolute; width: 100%;..

body { height: 100vh; background-color: #151515; display: grid; place-items: center; box-sizing: border-box; } .heart-loader { background-color: #F44336; width: 50px; height: 50px; position: relative; transform: rotate(45deg); animation: pulsate 1s infinite; } .heart-loader::before, .heart-loader::after { position: absolute; content: ""; display: inline-block; width: 50px; height: 50px; backgrou..