| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- MAC
- 비전공자
- javascript
- 개발자
- css3
- iPhone
- ipad
- image
- 프론트엔드
- html5
- 백엔드
- xcode
- 자바스크립트
- 애니메이션
- jQuery
- effect
- 비전공 개발자
- 풀스택
- CSS
- IOS
- keyframes
- php
- Animation
- react
- front-end
- button
- hover
- HTML
- SWIFT
- iOS 개발자
- Today
- Total
목록operator (2)
비전공자 개발일기
import UIKit @IBDesignable class RoundNumBTN: UIButton { @IBInspectable var isRound: Bool = false { didSet { if isRound { layer.cornerRadius = frame.height / 2 } } } } import UIKit enum Operation { case Plus case Substract case Multiple case Divide case unknown } class ViewController: UIViewController { @IBOutlet weak var numOutputLabel: UILabel! @IBOutlet weak var divideBTN: UIButton! @IBOutlet..
* { padding: 0; margin: 0; box-sizing: border-box; font-family: "Roboto Mono", monospace; } body { height: 100vh; background: linear-gradient(to bottom, #f9544c 50%, #090c31 50%); } .calculator { width: 400px; background-color: #15173c; padding: 50px 30px; position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; border-radius: 8px; box-shadow: 0 20px 50px rgba(0, 5, 24, 0.4); }..