##window对象,调整窗口大小事件
在这里插入代码片
``<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 600px;
height: 600px;
background-color: pink;
}
</style>
</head>
<body>
<div class="box"></div>
<script>
window.addEventListener('load', function () {
var div = document.querySelector('.box');
window.addEventListener('resize', function () {
console.log(window.innerWidth);
console.log("变化了");