Programming/JavaScript
Window Resizing
sunny.ryu
2022. 3. 11. 14:10
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events</title>
</head>
<body>
<h1>Resize the Window and Watch the Console</h1>
<script>
window.addEventListener('resize', function(){
console.log(`The window width is ${window.innerWidth}`);
console.log(`The window height is ${window.innerHeight}`);
});
</script>
</body>
</html>
윈도우 사이즈를 조절하면 높이와 너비가 콘솔에 찍힘