UXUI 웹디자인 과정
prompt
1. 입력한 숫자 출력 var num=prompt("정수 입력") document.write("num:", num) 2. 입력한 숫자 절대값 출력 var num=prompt("정수 입력"); if(num
[UXUI] 아키텍처 설계
drive.google.com/open?id=1Lwo_2zxMN-6yoNj55rKSPxanPmxI0Oyf 평가자료PT_아키텍쳐설계_신승구.pptx drive.google.com
5주차_예제 코드 모음
210201 document.write("Hello World!", " "); // Hello World! // " " (쌍따옴표) : 문자열 // write : write 함수 // document : document 객체 // -> JavaScript : 객체지향 프로그래밍 언어 // "document에 문자를 출력해라" document.write("Hello Jquery!", " "); // Hello Jquery! // jquery : JavaScript로 만든 라이브러리(기능 모음집) var num1=10; var num2=20; // var(variable) : 변수 // =(대입 연산자) : 오른쪽의 값을 왼쪽의 공간에 넣는다 (같다는 뜻 아님) // ;(세미 콜론) : 종결 문자 // "n..
4주차_예제 코드 모음
210127 See the Pen 210127_css by seung-gu shin (@nine_floor) on CodePen. css 예제(text-indent, overflow, transition, text-overflow, z-index) See the Pen 210127_css_position:fixed by seung-gu shin (@nine_floor) on CodePen. css 예제 _ position:fixed