interact-test.html 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Interact TEST</title>
  6. <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <style>
  8. .resize-drag {
  9. background-color: #29e;
  10. color: white;
  11. font-size: 20px;
  12. font-family: sans-serif;
  13. border-radius: 8px;
  14. padding: 20px;
  15. margin: 30px 20px;
  16. width: 120px;
  17. /* This makes things *much* easier */
  18. box-sizing: border-box;
  19. }
  20. .resize-container {
  21. display: inline-block;
  22. background-color: #cccccc;
  23. width: 400px;
  24. height: 400px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="resize-container">
  30. <div class="resize-drag">
  31. Resize from any edge or corner
  32. </div>
  33. </div>
  34. <script src="../node_modules/interactjs/dist/interact.js"></script>
  35. <script src="interact-test.js"></script>
  36. </body>
  37. </html>