5.拖拽.html 505 B

123456789101112131415161718192021222324
  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. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. #box {
  13. width: 200px;
  14. height: 200px;
  15. background: aqua;
  16. position: absolute;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div id="box"></div>
  22. <script src="../js/5.拖拽.js"></script>
  23. </body>
  24. </html>