8.事件流.html 832 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. #box1 {
  9. width: 300px;
  10. height: 300px;
  11. background: #ff0;
  12. }
  13. #box2 {
  14. width: 150px;
  15. height: 150px;
  16. background: #f00;
  17. }
  18. #box3 {
  19. width: 300px;
  20. height: 300px;
  21. background: #00f;
  22. }
  23. #box4 {
  24. width: 150px;
  25. height: 150px;
  26. background: #f00;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div id="box1">
  32. <div id="box2"></div>
  33. </div>
  34. <div id="box3">
  35. <div id="box4"></div>
  36. </div>
  37. <script src="../js/8.事件流.js"></script>
  38. </body>
  39. </html>