일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- iOS 개발자
- iPhone
- hover
- button
- IOS
- 애니메이션
- keyframes
- 비전공 개발자
- css3
- image
- 풀스택
- Animation
- SWIFT
- javascript
- 자바스크립트
- 개발자
- 비전공자
- html5
- xcode
- MAC
- 프론트엔드
- ipad
- jQuery
- react
- php
- effect
- CSS
- front-end
- 백엔드
- HTML
- Today
- Total
목록Javascript (176)
비전공자 개발일기
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bhY18r/btrjlqHpsyR/X9xihxGOlO2ikVrQnKDAt1/img.jpg)
Calendar 이전 달 년 월 다음 달 일 월 화 수 목 금 토 * { text-align: center; margin: 10px auto; } #calendar_wrap { background: #333; width: 350px; } caption { font-size: 1.5em; color: #ffa500; padding: 10px; } caption #prev, caption #next { display: inline-block; font-size: 5px; text-decoration: none; color: #fff; padding: 5px; margin: 10px; } table, th, td { color: #fff; border: 1px solid #666; border-collapse..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bdkcbC/btrjl9qYaTN/WXKlRu8pYDgK3nGzAlRbZ0/img.jpg)
Dark mode @import url('https://fonts.googleapis.com/css?family=Heebo:300&display=swap'); * { box-sizing: border-box; } :root { --primary-color: #000; --secondary-color: #fff; } html { transition: all 0.5s ease-in; } html.dark { --primary-color: #fff; --secondary-color: #333; } html.dark { background-color: #111; color: var(--primary-color); } body { font-family: 'Heebo', sans-serif; display: fle..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/JGRnj/btrjc6ahMIh/eHccRSQHUoBhKZ0ZLxYAl0/img.jpg)
My Website Home About Services Contact Welcome To My Website Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores, consequuntur? Content One Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ratione dolorem voluptates eveniet tempora ut cupiditate magnam, sapiente, hic quo in ipsum iste soluta eaque perferendis nihil recusandae dolore officia aperiam corporis similique. Faci..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/Hp6wJ/btri86m7soX/11dqmRsGSDbYwvFN6mNpK1/img.jpg)
Enter all of the choices divided by a comma (','). Press enter when you're done @import url('https://fonts.googleapis.com/css2?family=Muli&display=swap'); * { box-sizing: border-box; } body { background-color: #2b88f0; font-family: 'Muli', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; overflow: hidden; margin: 0; } h3 { color: #ff..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cIROnW/btriSKUlWHx/ZJoN2eHbYaRvovbcAdTnBk/img.jpg)
Pokedex @import url('https://fonts.googleapis.com/css?family=Lato:300,400&display=swap'); * { box-sizing: border-box; } body { background: #efefbb; background: linear-gradient(to right, #d4d3dd, #efefbb); font-family: 'Lato', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; } h1 { letter-spacing: 3px; } .poke-container { display: flex; f..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/AIUI9/btriTxS8pMw/r3zSew6qmHQzYdtPc5PW3k/img.jpg)
Image Password Strength Change the password to see the effect Email Password Submit * { box-sizing: border-box; } body { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; overflow: hidden; margin: 0; } .background { background: url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b") no-repeat center center/cover; position: absolute; top:..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/dBBl27/btriB5jUXVL/DJiKQ1PGN69ctlJXS82Gb0/img.jpg)
Password Generator Password Length Include uppercase letters Include lowercase letters Include numbers Include symbols Generate Password @import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); * { box-sizing: border-box; } body { background-color: #3b3b98; color: #fff; font-family: 'Muli', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/XV2x9/btriGkzI7Rn/odECk7ArSTG3Ki0ElimxEk/img.jpg)
Add note @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap'); * { box-sizing: border-box; outline: none; } body { background-color: #7bdaf3; font-family: 'Poppins', sans-serif; display: flex; flex-wrap: wrap; margin: 0; padding-top: 3rem; } .add { position: fixed; top: 1rem; right: 1rem; background-color: #9ec862; color: #fff; border: none; border-radius: 3p..