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

.logo { font-size: 8rem; text-shadow: 0 0 100px; animation: animate 2s infinite linear; margin:25% 50%; } @keyframes animate { 0%, 100% { color: lawngreen; } 25% { color: deeppink; } 50% { color: deepskyblue; } 75% { color: white; } }
1. ios 기본 아이폰이 제공하는 UI 처리 사용시 기본 아이폰이 제공하는 UI 처리 미사용시 2. Android * 사진 사이즈 아이폰 - 57 * 57 아이패드 - 72 * 72 아이폰4 - 114 * 114 안드로이드 - 72 * 72
import * as React from 'react'; import {NavigationContainer} from '@react-navigation/native'; import {createNativeStackNavigator} from '@react-navigation/native-stack'; import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'; import Settings from './src/pages/Settings'; import Orders from './src/pages/Orders'; import Delivery from './src/pages/Delivery'; import {useState} from 're..
import React from "react"; import { StatusBar } from "expo-status-bar"; import { StyleSheet, Text, View } from "react-native"; import { WebView } from "react-native-webview"; const MYLINK = "https://relaxed-turing-e7ea57.netlify.app"; export default function App() { return ( WEBVIEW ); } const styles = StyleSheet.create({ container: { marginTop: 40, padding: 30, flex: 1, alignItems: "center", ju..
단축키 설명 command + A 현재 활성화된 창의 모든 항목 선택 command + M 창 축소하기 command + delete 휴지통으로 해당 항목 이동 command 누른 상태로 드래그 드래그한 항목을 다른 위치로 이동 option 누른 상태로 드래그 드래그한 항목 복사 command + shift + 3 전체화면 스크린샷 command +shift + 4 지정 영역 스크린샷 command + W 화면 닫기 option + return 한자 키 전환 control + command + spacebar 특수키 선택창 command + C 복사 command + X 잘라내기 command + V 붙여넣기 shift + 창 모서리 가로 * 세로 동일한 비율로 확대 / 축소 option + 원하는 방향..