3.小例子.html 706 B

1234567891011121314151617181920212223242526272829
  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: 200px;
  10. height: 200px;
  11. background: #00f;
  12. transition: width 1s linear;
  13. }
  14. .box1 {
  15. width: 200px;
  16. height: 200px;
  17. background: #f00;
  18. transition: width 2s linear;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="box"></div>
  24. <button id="btn1">放大</button>
  25. <button id="btn2">缩小</button>
  26. <div class="box1"></div>
  27. <script src="../js/3.小例子.js"></script>
  28. </body>
  29. </html>