index.ejs 594 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. title: Drag and Drop
  3. type: examples
  4. order: 2
  5. ---
  6. {% blockquote %}
  7. Drag & Drop
  8. {% endblockquote %}
  9. <p>
  10. Here you'll see a demo of how you might set up Drag and Drop with Uppy:
  11. </p>
  12. <link rel="stylesheet" href="css/app.css">
  13. <% include html/app.html %>
  14. <script src="js/app.js"></script>
  15. <hr />
  16. <p>
  17. On this page we're using the following HTML snippet:
  18. </p>
  19. {% include_code lang:html dragdrop/html/app.html %}
  20. <p>
  21. Along with this JavaScript:
  22. </p>
  23. {% include_code lang:js dragdrop/js/app.es6 %}
  24. <p>
  25. And the following CSS:
  26. </p>
  27. {% include_code lang:css dragdrop/css/app.css %}