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

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #111; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .loader { width: 32px; height: 72px; display: inline-block; position: relative; border: 2px solid #FFF; animation: fill 2s linear infinite alternate; color: #2598EB; border-radius: 0 0 4px 4px; transform: perspective(140px) rotateX(..

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #151515; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .ghost { animation: float 3s ease-out infinite; } @keyframes float { 50% { transform: translate(0, 20px); } } .shadowFrame { width: 130px; margin-top: 15px; } .shadow { animation: shrink 3s ease-out infinite; transform-origin: ce..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #222; } .spinner-box { width: 300px; height: 300px; display: flex; justify-content: center; align-items: center; background-color: transparent; } .leo { position: absolute; display: flex; justify-content: center; align-items: center; border..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #333; } .pac-man { border-radius: 100em 100em 0 0 ; transform-origin: bottom; animation: easing-top .5s infinite; } .pac-man, .pac-man::before { width: 70px; height: calc(70px / 2); background-color: #FED75A; } .pac-man::before { content: "..

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #222; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .loader { position: relative; width: 60px; height: 60px; display: inline-block; background: radial-gradient(ellipse at center, #FFF 69%, rgba(0, 0, 0, 0) 70%), linear-gradient(to right, rgba(0, 0, 0, 0) 47%, #FFF 48%, #FFF 52%, rgba..

* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #222; } .blob-effect { position: relative; width: 200px; height: 200px; display: grid; place-items: center; } .blob-effect span:nth-child(1) { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 2px solid #A9FF68; border..

Parent Radius: Parent Padding: @import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); * { box-sizing: border-box; margin: 0; } body { min-height: 100vh; padding: 1rem; background: #789; display: flex; align-items: center; justify-content: center; font-family: "Poppins", sans-serif; } .container { display: flex; flex-direction: column; align-items: center; } .parent, .child..

12 3 6 9 * { margin: 0; padding: 0; box-sizing: border-box; position: relative; } body { display: flex; justify-content: center; align-items: center; background-color: #ACBACA; min-height: 100vh; } .clock { width: 300px; height: 300px; background-color: #C9D5E0; display: flex; justify-content: center; align-items: center; border-radius: 50px; box-shadow: 30px 30px 30px -10px rgba(0, 0, 0, .1), i..