14_DOMjs动画.html 763 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. #box{
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <div id="box"></div>
  17. <script>
  18. var oBox = document.getElementById("box");
  19. oBox.onmouseenter = function(){
  20. // oBox.style.height = "600px";
  21. var thisHeight = oBox.offsetHeight;
  22. console.log(thisHeight);
  23. setInterval(function(){
  24. thisHeight += 10;
  25. oBox.style.height =thisHeight + "px";
  26. },16)
  27. }
  28. </script>
  29. </body>
  30. </html>