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