자바스트립트에서 윈도우 사이즈 변경 이벤트 핸들러
아래 방법1, 방법2 모두 가능.
<script>
// 방법1.
window.addEventListener("resize", e => {
console.log(window.innerWidth);
console.log(window.innerHeight);
});
// 방법2.
window.onresize = function(){
console.log(window.innerWidth);
console.log(window.innerHeight);
}
</script>
실행결과
참고
브라우저에서 console.log 출력 보는 방법 : https://igotit.tistory.com/4967
첫 등록 : 2023.10.30
최종 수정 :
단축 주소 : https://igotit.tistory.com/4975
'지속가능티끌 > JavaScript' 카테고리의 다른 글
JS . uPlot . 자바 스크립트 고속 챠트 (0) | 2023.10.30 |
---|---|
JS . json (0) | 2023.10.29 |
JS . 웹브라우저에서 웹소켓 클라이언트 구현 (0) | 2023.10.29 |
JS . 자바스크립트 console.log 출력 웹 브라우저에서 보기 (0) | 2023.10.29 |
JS . html 에서 자바스크립트 파일 불러오기. (0) | 2023.10.29 |
댓글