index.html 975 B

12345678910111213141516171819202122232425262728293031323334
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <link
  8. href="https://releases.transloadit.com/uppy/v4.9.0/uppy.min.css"
  9. rel="stylesheet"
  10. />
  11. </head>
  12. <body>
  13. <noscript>You need JavaScript enabled for this example to work.</noscript>
  14. <button id="uppyModalOpener">Open Modal</button>
  15. <script type="module">
  16. import {
  17. Uppy,
  18. Dashboard,
  19. Webcam,
  20. Tus,
  21. } from 'https://releases.transloadit.com/uppy/v4.9.0/uppy.min.mjs'
  22. const uppy = new Uppy({ debug: true, autoProceed: false })
  23. .use(Dashboard, { trigger: '#uppyModalOpener' })
  24. .use(Webcam, { target: Dashboard })
  25. .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  26. uppy.on('success', (fileCount) => {
  27. console.log(`${fileCount} files uploaded`)
  28. })
  29. </script>
  30. </body>
  31. </html>