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

Scroll to see the animation content content content content content content content content content content @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); * { box-sizing: border-box; } body { background-color: #efedd6; font-family: 'Roboto', sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; overflow-x: hidden..
// break let goal = 3; let result = ""; for(let i = 0 ; i < 100; i++) { if(i === goal) { break; } result +="IRONMAN \n"; } console.log(result); // continue // 1부터 100까지 정수 중 7의 배수를 제외한 수 들의 합계 let sum = 0; for(let i = 1 ; i

Update CSS Variables with JS Spacing: Blur: Base Color :root { --base: #ffc600; --spacing: 10px; --blur: 10px; } body { text-align: center; background: #193549; color: white; font-family: 'helvetica neue', sans-serif; font-weight: 100; font-size: 50px; } .h1 { color: var(--base); } .controls { margin-bottom: 50px; } a { color: var(--base); text-decoration: none; } input { width: 100px; } img{ pa..
00:00:00 const clock = document.querySelector("h2#clock"); function getClock() { const date = new Date(); const hours = String(date.getHours()).padStart(2, "0"); const minutes = String(date.getMinutes()).padStart(2, "0"); const seconds = String(date.getSeconds()).padStart(2, "0"); clock.innerText = `${hours}:${minutes}:${seconds}`; } getClock(); setInterval(getClock, 1000);
const loginForm = document.querySelector("#login-form"); const loginInput = document.querySelector("#login-form input"); const greeting = document.querySelector("#greeting"); const HIDDEN_CLASSNAME = "hidden"; // 문자열 타입을 변수로 만든 이유 -> 오타로 인한 오류 방지 const USERNAME_KEY = "username"; function onLoginSubmit(event) { event.preventDefault(); // 이벤트의 기본 진행 차단 loginForm.classList.add(HIDDEN_CLASSNAME); co..