컴퓨터/Javascript 썸네일형 리스트형 Javascript sticky CSS .sticky { position: fixed; top: 0; } Javascript // When the user scrolls the page, execute myFunction window.onscroll = function() {myFunction()}; // Get the navbar var navbar = document.getElementById("navbar"); // Get the offset position of the navbar var sticky = navbar.offsetTop; // Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the .. Javascript Object.values() 객체 요소의 값 Object.values(obj); Javascript Object.keys() 객체의 키 값 const obj = {name: "홍길동", age: 39}; console.log(Object.keys(obj)); //[name, age] Obejct.keys(obj).length; 이렇게 하면 객체 안에 요소가 몇개인지 알 수 있다. Javascript load(), play() 미디어 재생 elAudio.load(); elAudio.play(); JavaScript charCodeAt() fromCharCode 문자와 아스키코드 변환 [문자 -> 아스키코드] console.log('hello'.charCodeAt(2)); 매개변수는 검색할 문자의 인덱스를 의미한다. 여기서는 'l'이다. [아스키코드->문자] console.log(String.fromCharCode(111)); 이전 1 ··· 3 4 5 6 7 8 9 ··· 11 다음