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

realtime on display EMOJI CURSOR TRAIL EFFECT * { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; background-color: #111; overflow: hidden; } span { position: absolute; pointer-events: none; width: 10px; height: 10px; animation: animate 1s linear infinite; } @keyframes animate { 0% { translate: 0 0; opacity: 0; } 10% { opacity: 1; } 90% { translate: 0 100px; opacity: 1..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4px; min-height: 100vh; background-color: #222; overflow: hidden; } :root { --clr1: #FF0087; --clr2: #01FF5F; } label { position: relative; width: 150px; height: 150px; } label input { appearance: none; } label .face { position: absolute; inset: 0; backgr..

.face { width: 100px; height: 100px; border-radius: 50%; background-color: #D8C557; box-shadow: inset -3px 0 0 4px rgba(255, 102, 0, .15); position: relative; } .eye { width: 30px; height: 30px; background-color: #FFF; border-radius: 50%; position: absolute; top: 32px; left: 12px; } .eye:last-child { left: auto; right: 12px; } .eye::after { content: ""; width: 12px; height: 12px; background-colo..