single.html 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>single</title>
  7. <style>
  8. body {
  9. min-height: 1000px;
  10. }
  11. .box {
  12. width: 100px;
  13. height: 100px;
  14. background: #19F;
  15. }
  16. .box.is-dragging {
  17. opacity: 0.6;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <h1>single</h1>
  23. <div class="box"></div>
  24. <script src="../node_modules/ev-emitter/ev-emitter.js"></script>
  25. <script src="../node_modules/get-size/get-size.js"></script>
  26. <script src="../node_modules/unipointer/unipointer.js"></script>
  27. <script src="../node_modules/unidragger/unidragger.js"></script>
  28. <script src="../draggabilly.js"></script>
  29. <script>
  30. var draggie = new Draggabilly( '.box', {
  31. });
  32. </script>
  33. </body>
  34. </html>