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

* { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: #000; overflow: hidden; height: 100vh; } i { position: absolute; height: 200px; background: linear-gradient(transparent, #FFF); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; animation: animate 5s linear infinite; } i:nth-child(3n + 1) { background:linear-gradient(transparent, #ABFFB2); } i:nth-child(..

Background Color Picker Click me! # .center { padding-top: 70px; margin: auto; text-align: center; } .btn { margin: auto; text-align: center; } function getHex() { let letters = "0123456789ABCDEF"; let color = "#"; for(let i = 0; i < 6; i++) { color += letters[(Math.floor(Math.random() * 16))]; } return color; } function changeColor() { let hex = getHex(); document.getElementById("hex").innerHTM..