| 1234567891011121314151617181920212223242526272829 | 
							- <!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: 100px;
 
-             height: 100px;
 
-             background-color: red;
 
-         }
 
-     </style>
 
- </head>
 
- <body>
 
-     <div class="box"></div>
 
-     <script>
 
-         var oBox = document.getElementsByClassName("box")[0];
 
-         oBox.style.width = "400px";
 
-         // var num = 100;
 
-         setInterval(function(){
 
-             // num += 10;
 
-             // offsetWidth 获取元素宽度 offsetHeight 获取元素高度
 
-             var boxWidth = oBox.offsetWidth + 10;
 
-             oBox.style.width = boxWidth + "px";
 
-         },16);
 
-     </script>
 
- </body>
 
- </html>
 
 
  |