index.html 841 B

123456789101112131415161718192021222324252627
  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 href="https://unpkg.com/uppy/dist/uppy.min.css" rel="stylesheet">
  8. </head>
  9. <body>
  10. <button id="uppyModalOpener">Open Modal</button>
  11. <script src="https://unpkg.com/uppy/dist/uppy.min.js"></script>
  12. <script>
  13. const uppy = Uppy.Core({debug: true, autoProceed: false})
  14. .use(Uppy.Dashboard, {
  15. trigger: '#uppyModalOpener',
  16. target: 'body'
  17. })
  18. .use(Uppy.Webcam, {target: Dashboard})
  19. .use(Uppy.Tus, { endpoint: 'https://master.tus.io/files/', resume: true })
  20. .run()
  21. uppy.on('success', (fileCount) => {
  22. console.log(`${fileCount} files uploaded`)
  23. })
  24. </script>
  25. </body>
  26. </html>