| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- xcode
- html5
- 백엔드
- effect
- 풀스택
- Animation
- 자바스크립트
- SWIFT
- ipad
- 비전공 개발자
- hover
- IOS
- CSS
- iOS 개발자
- iPhone
- react
- keyframes
- 비전공자
- image
- button
- HTML
- jQuery
- 애니메이션
- MAC
- javascript
- css3
- php
- front-end
- 개발자
- 프론트엔드
- Today
- Total
목록quote (2)
비전공자 개발일기
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Voluptas, magni. Lorem, ipsum. Get Quote * { padding: 0; margin: 0; box-sizing: border-box; font-family: "Poppins", sans-serif; } body { background-color: #f43543; } .wrapper { width: 400px; position: absolute; transform: translate(-50%, -50%); top: 50%; left: 50%; } .container { width: 100%; background-color: #f43543; padding: 50px 40px;..
import Foundation struct Quote { let contents: String let name: String } import UIKit class ViewController: UIViewController { @IBOutlet weak var quoteLabel: UILabel! @IBOutlet weak var nameLabel: UILabel! let quotes = [ Quote(contents: "죽음을 두려워하는 나머지 삶을 시작조차 못하는 사람이 많다", name: "벤다이크"), Quote(contents: "나는 나 자신을 빼놓고는 모두 안다", name: "비용"), Quote(contents: "편견이란 실효성이 없는 의견이다", name: "암브로스 빌"), Quot..