index.html 821 B

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