분류 전체보기

    JS 기본 정리

    www.notion.so/ninefloor/JS-4cde4d9b740b484dbdf9951dd1ab73ed function hello(); function : 함수 var num=10; document.write(num," "); var : 변수(variable) =(등호) : 대입 연산자, 오른쪽의 값을 왼쪽의 공간에 넣는다. alert("경고!"); alert : 경고 메세지 출력 var num1=eval('3+4'); document.write(num1, " "); // 7 eval : 문자열을 코드로 인식하게 함 var num=3.14; num=parseInt(num); document.write(num," ") // 3 parseInt : 정수 변환 parseFloat : 실수 변환 var ch..

    3주차_예제 코드 모음

    210118 See the Pen 210118_child by seung-gu shin (@nine_floor) on CodePen. first-child, nth-child($) See the Pen 210118_before, after by seung-gu shin (@nine_floor) on CodePen. :before, :after function hello(); //function : 함수 var num=10; document.write(num," "); //var : 변수(variable) // =(등호) : 대입 연산자, 오른쪽의 값을 왼쪽의 공간에 넣는다. alert("경고!"); //alert 함수 : 경고 메세지 출력 var num1=eval("3+4"); document.write..

    [UXUI 웹디자인] 1달차 과제_11 / G마켓 푸터 메뉴 만들기

    https://ninefloor.github.io/web-practice/work/11/ https://ninefloor.github.io/web-practice/work/11/ ninefloor.github.io G마켓 소개 채용정보 이용약관 개인정보처리방침 청소년보호정책 전자거래금융약관 제휴·광고 /* 예제용 기본 속성 시작 */ * { margin: 0; padding: 0; } @font-face{ src: url("../fonts/GmarketSansTTFMedium.ttf"); font-family: "gmedium"; } a { text-decoration: none; color: rgb(83, 83, 83); font-size: 14px; font-family: "gmedium"; } ul..

    [UXUI 웹디자인] 1달차 과제_9 / 쇼핑몰 박스 꾸미기

    https://ninefloor.github.io/web-practice/work/9/ 김치찌개5,000원 낫토1,000원 순두부찌개6,000원 오늘의 추천 특가 올리브오일12,000원 요거트8,000원 김치20,000원 HTML /* 예제용 기본 속성 시작 */ * { margin: 0; padding: 0; font-family: "Gmedium"; } a { text-decoration: none; } ul { list-style-type: none; } body { padding: 10px; box-sizing: border-box; } h1 { margin-top: 10px; } @font-face { src: url("../fonts/GmarketSansTTFMedium.ttf"); font-..