일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프론트엔드개발자양성과정
- 맥북백틱입력
- 웅진씽크빅
- 디지털취업
- 디지털하나로입학식
- 디지털교육
- kdt
- 프론트엔드배포
- 개발자교육과정
- 스나이퍼팩토리
- github
- `
- s3
- 취준생
- 배포
- 부트캠프
- 깃허브 레포지토리와 로컬 코드 연결하기
- 유데미
- 미래내일일경험
- 백틱
- Next.js
- DIGITALHANARO
- 맥북백틱
- 버전생성프로세스
- 디지털하나로
- udemy
- 프로젝트캠프
- 하나은행
- 네이버로그인창만들기
- Today
- Total
목록전체 글 (121)
Land of Joe
Step0 ) 기본 설정 // javascript const todoForm = document.querySelector('#todo-form'); const todoList = document.querySelector('#todo-list'); Step1 ) input 태그인 todoForm이 'submit'되었을 때 작동할 'handleTodoSubmit'이라는 함수를 만든다 function handleToDoSubmit(event){ event.preventDefault();//새로고침되지 않게 하기 위해 const newTodo = todoInput.value; todoInput.value=""; //작성 후 엔터 누르면 UI상 input 안이 비어지도록 paintTodo(newTodo); } S..
// html {quote, author}이 '10개' 있는 const quotes 생성 // javascript const quotes = [ { quote: "Go ahead, make my day.", author: "Harry Callahan" }, { quote: "If you want something done right, do it yourself.", author: "Charles-Guillaume Étienne" }, { quote: "May the Force be with you.", author: "Star Wars" }, { quote: "Life is like a box of chocolates. You never know what you’re gonna get.", author:..
00:00:00 // javascript const clock = document.querySelector('h2#clock'); setInterval, setTimeout 활용해서 시계 만들기를 해보자 [JavaScript] setInterval, setTimeout 공부(2) 22.10.05에 썼던 글 https://joeindeu22.tistory.com/entry/setTimeout [JavaScript] setTimeout, setInterval 타이머 설정하기 setTimeout() : 일정 시간이 지나면 코드를 실행해주는 자바스크립트의 기본 함수 setInterval() : 일 joeindeu22.tistory.com 그전에 js에 있는 date 객체를 활용해 현재 시각을 가져올 수 있다 c..
22.10.05에 썼던 글 https://joeindeu22.tistory.com/entry/setTimeout [JavaScript] setTimeout, setInterval 타이머 설정하기 setTimeout() : 일정 시간이 지나면 코드를 실행해주는 자바스크립트의 기본 함수 setInterval() : 일정 시간마다 코드를 실행해주는 자바스크립트의 기본 함수 setTimeout(function(){실행코드}, 시간); setInter joeindeu22.tistory.com [ '일정 시간 간격마다' function 호출하기 ] setInterval( , ) 첫번째 인자: 실행하고자 하는 function 두번째 인자: 호출되는 function을 몇 ms(1s=1000ms) 간격으로 할지 func..
https://ts2ree.tistory.com/122 검색창 만들기 오늘은 위처럼 생긴 검색창을 만들어 볼 것이다. div 태그 안에는 input 태그, img 태그가 들어있다. .search { position: relative; width: 300px; } input { width: 100%; border: 1px solid #bbb; border-radius: 8px; padding: 10px 12p ts2ree.tistory.com
브라우저에 데이터를 저장할 수 있게 하는 기능 https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage Window: localStorage property - Web APIs | MDN The localStorage read-only property of the window interface allows you to access a Storage object for the Document's origin; the stored data is saved across browser sessions. developer.mozilla.org localStorage.setItem(key, value); localStorage.setItem("myC..
const food = ['tomato', 'potato']; const [veg1, veg2] = food; // console.log(veg1) ->> tomato // console.log(veg2) ->> potato const [counter, setCounter] = React.useState(0); const onClick = () => { setCounter(counter+1) setCounter((current) => current +1); }; modifier함수를 이용해 state 변경하면 해당 컴포넌트 전체가 재생산(re-render)된다. const [counter, setCounter] = React.useState(); 에서 React.useState() 는 react기능을 ..
0. text 타입의 태그 만들기 1. 검색창 크기 변경 .navbar-search input { width: 500px;//검색창 가로 길이 height: 45px;//검색창 세로 길이 font-size: 20px;//검색창 내부 글씨 크기 } 2. 검색창 안에 이미지 삽입 (돋보기) .navbar-search input { width: 500px; height: 45px; font-size: 20px; background-image: url('');//삽입할 이미지 url background-repeat: no-repeat;//이미지가 작아서 반복되는 것 방지 background-size: 40px;//이미지 크기 설정 background-position: right;//이미지 위치 설정 } 3. 검..