e.preventDefault();
xxx.querySelector('#intro');
xxx.querySelectorAll('a');
xxx.getAttribute('href');
window.scrollTo({
'behavior':'smooth',
'top':xxx.offsetTop
});
setInterval( function(){
함수내용
}, 0000)
xxx.animate({
marginLeft : ['0px', '1024px'] // [시작 지점, 끝 지점]
}, {
duration : 500, // 500ms(0.5초) 동안
easing : 'ease', // 애니메이션의 속도를 설정하는 것.
iterations : 1, // 몇번 반복할지
fill : 'both' // 어떻게 채울지
})
추가 : xxx.classList.add(클래스 명)
제거 : xxx.classList.remove(클래스 명)
nodeList.forEach(function(item){
console.log(item)
})
xxx.previousElementSibling;
xxx.nextElementSibling;
xxx.parentElement;
xxx.firstElementChild;
xxx.lastElementChild;