| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- iOS 개발자
- IOS
- Animation
- ipad
- CSS
- 개발자
- php
- 비전공자
- 비전공 개발자
- keyframes
- 애니메이션
- SWIFT
- react
- 자바스크립트
- 백엔드
- 풀스택
- xcode
- effect
- jQuery
- hover
- 프론트엔드
- front-end
- image
- css3
- html5
- iPhone
- button
- HTML
- MAC
- Today
- Total
목록camera (2)
비전공자 개발일기
import UIKit class ViewController: UIViewController { @IBOutlet weak var imageView: UIImageView! let imagePicker = UIImagePickerController() var selectedImage = UIImage() override func viewDidLoad() { super.viewDidLoad() imagePicker.delegate = self imageView.backgroundColor = .brown } @IBAction func cameraBTN(_ sender: UIButton) { imagePicker.sourceType = .camera present(imagePicker, animated: t..
body { background-color: #111; overflow: hidden; text-align:center; display: flex; align-items: center; justify-content: center; } body, html { height: 100%; width: 100%; margin: 0; padding: 0; } svg { width: 100%; height: 100%; visibility: hidden; cursor: pointer; } let select = (s) => document.querySelector(s), selectAll = (s) => document.querySelectorAll(s), mainSVG = select("#mainSVG"); gsap..