| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- button
- Animation
- effect
- iOS 개발자
- 애니메이션
- 비전공 개발자
- 자바스크립트
- javascript
- 개발자
- html5
- image
- hover
- SWIFT
- MAC
- react
- xcode
- HTML
- front-end
- ipad
- iPhone
- jQuery
- 풀스택
- 백엔드
- php
- 프론트엔드
- CSS
- IOS
- keyframes
- 비전공자
- css3
- Today
- Total
목록html5 (313)
비전공자 개발일기
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #333; } ul { list-style-type: none; } li { display: inline-block; } input[type="checkbox"][id^="myCheckbox"] { display: none; } label { border: 1px solid #fff; padding: 10px; display: block; position: relative; margin: 10px; cursor: pointer..
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; background-color: #25335B; min-height: 100vh; } .container { position: relative; top: -80px; transform: skewY(-20deg); animation: animate 5s linear infinite; } @keyframes animate { 0% { filter: hue-rotate(0); } 100% { filter: hue-rotate(360deg); } } .container .cube { z-index:..
* { padding: 0; margin: 0; } .game { width: 600px; height: 200px; border: 1px solid #000000; margin: auto; } #dino { width: 70px; height: 70px; background-image: url(t-rex.png); background-size: auto 70px; position: relative; top: 143px; } .jump { animation: jump 0.3s linear; } @keyframes jump { 0% { top: 143px; /*distance from the top of the parent element*/ } 30% { top: 115px; } 50% { top: 70p..
Subscribe Us Lorem Ipsum is simply dummy text of the printing and typesetting industry. Let's go @import url('https://fonts.googleapis.com/css?family=Nunito'); :root { --start-color: #0575E6; --end-color: #021B79; --p-color: #929DA6; --button-background: #0575E6; --input-background: #e4eff8; --radius-50: 50px; --padding-15: 15px; } body { margin: 0; padding: 0; height: 100vh; background: var(--s..
00 : 00 : 00 : 00 Your time starts now Stop * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Roboto; font-weight: 300; background: linear-gradient(to left, #635bfc, #8ffcf0); display: flex; justify-content: center; align-items: center; height: 100vh; } .container { width: 800px; margin: 150px auto; color: #ffffff; text-align: centre; } .wrap { display: inline-block; min-w..
Animated Skills Bar HTML CSS Java Script Swift @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } html,body{ display: grid; height: 100%; place-items: center; background-color: lightgray; } h1{ font-size: 4rem; text-align: center; color: #fff; text-shado..
Wish u a happy T okyo D aeg u * { margin: 0; padding: 0; box-sizing: border-box; font-family: "poppins", sans-serif; } h3 { font-size: 1.5em; text-transform: uppercase; letter-spacing: 3px; font-weight: 300; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); } h1 { text-align: center; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); line-height: ..
Open Color Picker const imgInput = document.querySelector('#img-select') const imgPreview = document.querySelector('.preview') if(!window.EyeDropper){ alert("Your browser does not support this feature") } const eyeDropper = new EyeDropper() const pickerBtn = document.querySelector('.open-picker') const result = document.querySelector('.res') imgInput.addEventListener('change', function() { const..