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

4 100 30 .notification-wrapper { width: fit-content; text-align: center; } .heart-icon { font-size: 20px; position: relative; } .heart-icon::after { content: " "; position: absolute; inset: 0 0 auto auto; width: 5px; height: 5px; background-color: #5f49ec; border: 2px solid #151515; border-radius: 50%; opacity: 0; transform: scale(0); transition: transform .5s linear, opacity .5s; } .notificatio..

.card { width: 150px; height: 200px; position: relative; } .card_inner { width: inherit; height: inherit; background-color: rgba(255, 255, 255, .05); box-shadow: 0 0 10px rgba(0, 0, 0, 0.25); backdrop-filter: blur(10px); border-radius: 8px; } .circle { width: 100px; height: 100px; background: radial-gradient(#b0e633, #53ef7d); border-radius: 50%; position: absolute; animation: move-up 2s ease-in..

.container { background-color: #000; margin: 500px; text-align: center; font-size: 30px; width: 200px; height: 50px; } .fab{ color: #fff; animation: first_color .5s ease-in-out infinite alternate; } .fab:nth-child(2) { animation-name: second_color; } .far{ color: #fff; animation: third_color .5s ease-in-out infinite alternate; } @keyframes first_color { 0% { text-shadow: 0 0 10px #ff1177, 0 0 20..

Scanning... body { background-color: #6667ab; } .scanner h1 { color: #252839; font-size: 4rem; position: absolute; } .scanner h1:before { content: 'Scanning...'; position: absolute; top: 0; left: 0; width: 0; height: 100%; border-right: 4px solid red; box-shadow: 0 0 10px 10px #ff0000; overflow: hidden; color: red; animation: scan 4s linear infinite; } @keyframes scan { 0%, 10%, 100% { width: 0;..

body { background-color: black; height: 100vh; display: flex; justify-content: center; align-items: center; } .love { position: relative; width: 50px; height: 50px; } p::after { position: absolute; width: 50px; height: 50px; content: "I LOVE"; font-size: 5px; font-weight: 700; top: 10px; left: 1px; transition: all .5s ease-in-out; } .love span { position: absolute; width: 30px; height: 30px; bac..

HiroDaegu .container { width: 100vw; height: 100vh; max-width: 1280px; max-height: 800px; min-width: 1000px; min-height: 600px; display: flex; justify-content: space-around; align-items: center; margin: 0 auto; } .border { width: 290px; height: 369px; background: transparent; border-radius: 10px; transition: border 1s; position: relative; } .border:hover { border: 1px solid #fff; } .card { width..

body { margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; background: radial-gradient(#9bdfff, #009be4); } .infinite { position: absolute; width: 880px; height: 160px; background: #525252; transform-origin: bottom; transform-style: preserve-3d; transform: perspective(500px) rotateX(30deg); } .infinite:before { content: ''; position: absolute; t..

.animated-background { background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045); background-size: 400% 400%; animation: animate-background 10s infinite ease-in-out; } @keyframes animate-background { 0% { background-position: 0 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }