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

CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME CSS IS AWESOME * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #222; min-height: 100vh; display: flex; justify-content: center; align-items: center; } .box { position: relative; display: flex; flex-direction: column; } .box h2 { font..

* { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 100vh; background-color: #333; display: flex; justify-content: center; align-items: center; } .wandering-cubes { width: 4em; height: 4em; position: relative; margin: auto; } .wandering-cubes .cube { background-color: #229ABC; width: 2em; height: 2em; position: absolute; top: 0; left: 0; animation: wandering-cubes 1.8s ease-i..

프로젝트 제작을 위해 기능별로 나눠둔 부분들을 하나로 합치던 과정에서 생긴 에러 Thread 1: "Invalid parameter not satisfying: !stayUp || CLClientIsBackgroundable(internal->fClient) || _CFMZEnabled()" 원인 1. Capability - Background mode가 없었던 것 2. Background mode 추가 후 Location updates를 체크하지 않았던 것 해결 1. Capability - Background mode를 추가 2. Background mode 추가 후 Location updates를 체크

Text Soap An iMessage chat becomes fodder for daytime drama This begins one morning with my friend in San Diego telling me about an earthquake they just had. It was loud. We just laid there and said “is this an earthquake? I think this is an earthquake.” Like is this an earthquake just go back to sleep It’s more like “this is an earthquake. Check the Internet. Yup. Earthquake. This is the size. ..

위의 설정을 프로젝트에 추가를 하면, 사용자 기기의 설정과 관계없이 하나의 모드를 고정(다른 모드의 설정을 무시) 할 수 있음
import UIKit import WebKit class ViewController: UIViewController, WKNavigationDelegate { override func viewDidLoad() { super.viewDidLoad() view.addSubview(webView) NSLayoutConstraint.activate([ webView.leadingAnchor.constraint(equalTo: view.leadingAnchor), webView.trailingAnchor.constraint(equalTo: view.trailingAnchor), webView.bottomAnchor.constraint(equalTo: view.layoutMarginsGuide.bottomAnch..
import UIKit import AVFoundation import QRCodeReader class ViewController: UIViewController, QRCodeReaderViewControllerDelegate { override func viewDidLoad() { super.viewDidLoad() print("") print("===============================") print("[ViewController >> viewDidLoad() :: 액티비티 메모리 로드 실시]") print("===============================") print("") self.checkCameraPermission() } // MARK: [액티비티 뷰 화면 표시 실..

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog : The Dialog element - HTML: HyperText Markup Language | MDN The HTML element represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow. developer.mozilla.org Favorite animal: Choose… Brine shrimp Red panda Spider monkey Cancel Confirm Show the dialog const showButton = document.ge..