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