123456789101112131415161718192021222324 |
- <!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>
- * {
- margin: 0;
- padding: 0;
- }
- #box {
- width: 200px;
- height: 200px;
- background: aqua;
- position: absolute;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script src="../js/5.拖拽.js"></script>
- </body>
- </html>
|