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

* { 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..

body { background-color: black; height: 100vh; display: flex; justify-content: center; align-items: center; } .love { position: relative; width: 50px; height: 50px; } p::after { position: absolute; width: 50px; height: 50px; content: "I LOVE"; font-size: 5px; font-weight: 700; top: 10px; left: 1px; transition: all .5s ease-in-out; } .love span { position: absolute; width: 30px; height: 30px; bac..