index.html 978 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 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 Dashboard = Uppy.Dashboard
  14. const Webcam = Uppy.Webcam
  15. const Tus = Uppy.Tus
  16. const uppy = Uppy.Core({debug: true, autoProceed: false})
  17. .use(Uppy.Dashboard, {
  18. trigger: '#uppyModalOpener',
  19. target: 'body'
  20. })
  21. .use(Webcam, {target: Dashboard})
  22. .use(Tus, {endpoint: 'https://master.tus.io/files/', resume: true})
  23. uppy.run()
  24. uppy.on('success', (fileCount) => {
  25. console.log(`${fileCount} files uploaded`)
  26. })
  27. document.querySelector('#uppyModalOpener').click()
  28. </script>
  29. </body>
  30. </html>