inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

thehrto12님의 게시글

thehrto12 thehrto12

@thehrto121630

수강평 작성수
1
평균평점
5.0

게시글 5

질문&답변

파일 읽는데 이상한 에러 현상

아 제 실수였네요.. 입력받는 범위를 k가 아닌 n으로 하고 있었습니다 ^^..

좋아요수
0
댓글수
1
조회수
256

질문&답변

배포 질문이요!

저도 같은 이슈입니다 해결하셨을까요..??

좋아요수
1
댓글수
1
조회수
535

질문&답변

answer 여러 개 나옵니다.

아래처럼 하니 해결됐습니다 let isClickable = true; function start() { main.style.WebkitAnimation = "fadeOut 1s"; main.style.animation = "fadeOut 1s"; setTimeout(()=>{ qna.style.WebkitAnimation = "fadeIn 1s"; qna.style.animation = "fadeIn 1s"; isClickable = false; setTimeout(()=>{ main.style.display = "none"; qna.style.display = "block"; },450) let qIdx = 0; goNext(qIdx); },450); } function begin() { if(!isClickable) { return false; } isClickable = false; start(); setTimeout(()=>{ isClickable = true; }, 1000) }

좋아요수
1
댓글수
3
조회수
383