# 넘버링 - 결과 HTML 삽입 미리보기할 수 없는 소스 - 소스
css .xxx { max-height : calc(100vh - 50px); max-height : calc(var(--vh, 1vh) * 100 - 50px); } js(jQuery) var vh = window.innerHeight * 0.01 document.documentElement.style.setProperty('--vh', `${vh}px`) window.addEventListener('resize', () => { var vh = window.innerHeight * 0.01 document.documentElement.style.setProperty('--vh', `${vh}px`) }) $(".xxx").css({ "max-height" : "calc(100vh - " + "50px..
데이터 타입 1. 자바스크립트의 자료형 종류 1) 기본 데이터 타입 ◇ 문자열 (string) ◇ 숫자 (number) 8byte ◇ 불리언 (boolean) 1bit 2) 단순 데이터 타입 ◇ 정의되지 않은 자료형 (null,undefined) 3) 복합 데이터 타입 ◇ 객체 (object) 4) 특별한 형태의 객체 ◇ 함수 (function) 2. 자료형 검사 ◇ alert( typeof("문자") ) => string ◇ alert( typeof(1234) ) => number 3. 객체 1) 객체 특징 ◇ 속성,메서드 를 가지고있음. ◇ new 통해생성. ◇ 프로토 타입(prototype) 상속. 2) 기본내장객체 ◇ javascript 제공되는 객체 4. 기존 자료형과 객체의 차이 기본 자료형과..
- Total
- Today
- Yesterday