| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- hover
- keyframes
- Animation
- 풀스택
- react
- CSS
- xcode
- jQuery
- iOS 개발자
- front-end
- IOS
- ipad
- iPhone
- MAC
- 비전공자
- javascript
- HTML
- SWIFT
- image
- 비전공 개발자
- 애니메이션
- effect
- button
- 개발자
- 백엔드
- css3
- php
- 프론트엔드
- 자바스크립트
- html5
- Today
- Total
목록scroll (6)
비전공자 개발일기
var isScrolling = false ... let preferences = WKPreferences() preferences.javaScriptCanOpenWindowsAutomatically = true ... let contentController = WKUserContentController() ... let configuration = WKWebViewConfiguration() configuration.preferences = preferences configuration.userContentController = contentController ... webView = WKWebView(frame: self.view.bounds, configuration: configuration) ...
webView.scrollView.refreshControl = UIRefreshControl() webView.scrollView.refreshControl?.addTarget(self, action: #selector(handleRefreshControl), for: .valueChanged) webView.scrollView.refreshControl?.tintColor = UIColor(red: 187 / 255, green: 38 / 255, blue: 73 / 255, alpha: 1.0) webView.scrollView.refreshControl?.attributedTitle = NSAttributedString(string: "당겨서 새로고침", attributes: [.foregroun..
Magic Magic Magic * { margin: 0; padding: 0; box-sizing: border-box; } body { min-height: 200vh; } section { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: #333; } section .sec { position: absolute; width: 100%; height: 100%; z-index: 10; } section .sec.sec1 { background-color: #B0FF54; clip-path: circle(200px at 0 0); } section .sec.sec2 { background-color: #03A..
Scroll to see the animation Content Content Content Content Content Content Content Content Content Content * { box-sizing: border-box; } body { background-color: #EFEDD6; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; overflow-x: hidden; } h1 { margin: 10px; } .box { background-color: #9535F0; color: #FFF; display: flex; align-items: center; just..
SCROLL * { margin: 0 ; padding: 0; } body { background-color: #111; height: 200vh; } section { position: absolute; width: 100%; height: 100%; background: #2abbff; } section p{ font-size: 100px; color: #6667ab; text-align: center; position: absolute; top: 70%; left: 39%; z-index: 3; } section .curve { width: 100%; height: 200px; position: absolute; bottom: -200px; transform-origin: top; } section..
Scroll to see the animation content content content content content content content content content content @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); * { box-sizing: border-box; } body { background-color: #efedd6; font-family: 'Roboto', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; overflow-x: hidden..