| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- image
- 비전공 개발자
- 풀스택
- hover
- javascript
- front-end
- iOS 개발자
- effect
- Animation
- xcode
- iPhone
- 애니메이션
- IOS
- 백엔드
- 비전공자
- css3
- 개발자
- react
- 자바스크립트
- html5
- CSS
- php
- HTML
- SWIFT
- keyframes
- 프론트엔드
- ipad
- button
- MAC
- jQuery
- Today
- Total
목록html5 (313)
비전공자 개발일기
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..
TOKYO body { background-color: #000; } .container { display: flex; justify-content: center; align-items: center; perspective: 500px; } #card { position: relative; width: 250px; height: 350px; margin: 10%; background: url("url") center no-repeat; background-size: cover; border: 2px solid violet; border-radius: 10px; transform-style: preserve-3d; will-change: transform; transition: all .5s ease-ou..
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..
RESTART 100% 100% 100% * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #101010; font-family: sans-serif; } .restart { width: 250px; height: 50px; margin: 100px 831px 0; cursor: pointer; } .container { display: flex; max-width: 900px; margin: -260px auto; justify-content: space-around; align-items: center; flex-wrap: wrap; height: 100vh; padding: 20px; } .container .card {..
Text Hover Effect TEXT HOVER EFFEECT Shake On Invaild Input /* Text Hover Effect */ .link { text-align: center; font-size: 30px; color: #6667ab; margin: 40%; line-height: 150px; background-image: linear-gradient(#ff2f97, #ff2f97); background-repeat: no-repeat; background-size: 0 100%; background-position-x: right; transition: background-size 500ms; } .link:hover { background-size: 100% 100%; bac..
MENU body { background-color: #000; } .menu_btn { width: 100px; height: 40px; position: relative; color: #808080; margin: 20%; background-color: #000; border: 1px solid #808080; border-radius: 5px; transition: all 1s; } .menu_btn:hover { color: #000; border-color: #000; background-color: #fff; font-weight: 700; } .menu_btn::before { content: ""; position: absolute; top: 80%; left: 0; width: 100p..
Age Calculator Date Month Year body{ font-family: Arial, Helvetica, sans-serif; background-color: #2782e3; font-size: 15px; line-height: 1.5; padding: 0; margin: 0; } * { box-sizing: border-box; } .container{ width:520px; height: auto; margin: 100px auto; background-color: #eee; border-radius: 25px; } .base{ width: 100%; margin: 0; overflow: hidden; display: block; float: none; } .block{ width: ..
.motion { width: 200px; height: 200px; border-radius: 50%; position: relative; display: flex; justify-content: center; align-items: center; } .circle { width: 100px; height: 100px; border: 1px solid #6667ab; position: absolute; border-radius: 50%; animation: circleAnimation 2s linear infinite; } .circle::before { content: ""; position: absolute; top: -10px; left: 50%; transform: translateX(-50%)..