일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html5
- 애니메이션
- 비전공자
- jQuery
- effect
- 자바스크립트
- image
- 개발자
- css3
- button
- CSS
- MAC
- php
- 풀스택
- react
- 백엔드
- ipad
- keyframes
- hover
- SWIFT
- iPhone
- Animation
- iOS 개발자
- 비전공 개발자
- xcode
- HTML
- front-end
- 프론트엔드
- IOS
- javascript
- Today
- Total
목록css3 (310)
비전공자 개발일기
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/B3lfS/btrH1asPbs2/RgD0JSEiy1KY5a0KfDh8M0/img.jpg)
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #667ABA; } .loader { position: relative; width: 120px; height: 120px; } .loader span { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(calc(18deg * var(--i))); } .loader span::before { content: ''; position..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/qoCBj/btrHZVXJOlz/QGUTyx4yaxAzw2vknhkIKK/img.jpg)
Button Button Button * { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; flex-direction: column; gap: 40px; background-color: #27282C; } a { position: relative; background-color: #444; color: #FFF; text-decoration: none; text-transform: uppercase; font-size: 1.5em; letter-spacing: .1em; font-weight: 400; padd..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/HA6hu/btrHWGEx8w8/hKNlvWBUhmL3DDemEthkQK/img.jpg)
* { background-color: #2598EB; } .wrapper { --imagesize: 300px; --transform: calc(var(--imagesize) / 2); perspective: 800px; } .wrapper:hover { transform: scale(1.5); } .cube { transform-style: preserve-3d; position: relative; width: var(--imagesize); height: var(--imagesize); animation: rotate 10s ease-in-out infinite; transform-origin: center center; margin: 250px auto; } .side { position: abs..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/chC39c/btrHOlu3Btm/UPZr7hD9qr6BdIbMaPdEk0/img.jpg)
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #181C1F; } .container { position: relative; height: 400px; border-bottom: 2px solid #FFF; } .cloud { position: relative; top: 50px; width: 320px; height: 100px; background-color: #FFF; border-radius: 100px; } .cloud::before { content: ""; p..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/b0g9oa/btrHIHSFzHI/DOiyMX7x2l1PKstxuE4X61/img.jpg)
Login Form Email Show Password Password Forgot password? html, body { align-items: center; background: #f2f4f8; border: 0; display: flex; font-family: Helvetica, Arial, sans-serif; font-size: 16px; height: 100%; justify-content: center; margin: 0; padding: 0; } form { --background: white; --border: rgba(0, 0, 0, 0.125); --borderDark: rgba(0, 0, 0, 0.25); --borderDarker: rgba(0, 0, 0, 0.5); --bgC..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/oQsYv/btrHDBqIBcZ/kc7izmd0dVTRGyuw651940/img.jpg)
Menu My drive Computers Shared with me Starred Trash aside { color: #fff; width: 250px; padding-left: 20px; height: 100vh; background-image: linear-gradient(30deg, #0048bd, #44a7fd); border-top-right-radius: 80px; } aside a { font-size: 12px; color: #fff; display: block; padding: 12px; padding-left: 30px; text-decoration: none; -webkit-tap-highlight-color: transparent; } aside a:hover { color: #..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/36yBK/btrHqRhvRGU/ELAFKh9tiNQAXZEb3ylmW1/img.jpg)
https://bennettfeely.com/clippy/ Clippy — CSS clip-path maker About Clip Paths The clip-path property allows you to make complex shapes in CSS by clipping an element to a basic shape (circle, ellipse, polygon, or inset), or to an SVG source. CSS Animations and transitions are possible with two or more clip-path shape bennettfeely.com * { margin: 0; padding: 0; box-sizing: border-box; } body { di..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bevAIN/btrHqP34S4H/qWfHfCNxdf0fXAeRFDdwUK/img.jpg)
body { margin: 0; background-color: #eee; background-image: url("https://images7.alphacoders.com/938/thumb-1920-938300.jpg"); background-repeat: no-repeat; background-position: center; background-size: cover; height: 100vh; overflow: hidden; } .overlay { background-color: rgba(255, 255, 255, 0.4); width: 100vw; height: 100vh; position: absolute; } .card { backdrop-filter: blur(5px); min-width: 3..