웹 코딩/개인 프로젝트(2)
-
그림판 만들기
그림판 구현 기능 9가지 색상 색 채우기 이미지 파일 저장 페인트 굵기 그림판 클리어 const canvas = document.getElementById("jsCanvas"); const ctx = canvas.getContext("2d"); const colors = document.getElementsByClassName("jsColor"); const range = document.getElementById("jsRange"); const mode = document.getElementById("jsMode"); const saveBtn = document.getElementById("jsSave"); const INITIAL_COLOR = "#2c2c2c" // 기본 컬러 블랙 const CAN..
2021.08.18 -
To Do List 사이트 만들기
To Do List 사이트 만들기 구현 기능 현재 시간 날씨 배경화면, 명언 무작위로 나타내기 To Do List 작성 로그인 기능 현재 시간 const clock = document.querySelector("h2#clock"); function getClock() { const date = new Date(); clock.innerText = `${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`; const hours = String(date.getHours()).padStart(2, "0"); const minutes = String(date.getMinutes()).padStart(2, "0"); const seconds = String(..
2021.08.16