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

Counter APP 0 decrement reset increment * { margin: 0; padding: 0; box-sizing: border-box; } body { font-size: 16px; color: #333; width: 400px; margin: 0 auto; display: flex; justify-content: center; align-items: center; flex-direction: column; min-height: 100vh; background-color: #ABDCF0; } h1 { text-transform: uppercase; } .counter-preview { font-size: 8rem; font-weight: 700; color: #333; } bu..

Search * { padding: 0; margin: 0; box-sizing: border-box; } *:not(i) { font-family: "Poppins", sans-serif; } body { height: 100vh; background: linear-gradient(184deg, #8754ff, #8e2de2); } .container { background-color: #d2daff; width: 90vmin; position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; padding: 80px 50px; border-radius: 10px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0..

정의된 자식에 대한 다양한 Press 상호 작용 단계를 감지할 수 있는 핵심 구성 요소 import React from 'react'; import {View, Text, Pressable} from 'react-native'; const Button = props => { return ( { console.log('Press In'); }} onPressOut={() => { console.log('Press Out'); }} onPress={() => { console.log('Press'); }} onLongPress={() => { console.log('Long Press'); }} delayLongPress={3000} pressRetentionOffset={{button: 50, left: ..