index.html 958 B

123456789101112131415161718192021222324
  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://releases.transloadit.com/uppy/v2.12.0/uppy.min.css" rel="stylesheet">
  8. </head>
  9. <body>
  10. <button id="uppyModalOpener">Open Modal</button>
  11. <script src="https://releases.transloadit.com/uppy/v2.12.0/uppy.min.js"></script>
  12. <script>
  13. const uppy = new Uppy.Core({debug: true, autoProceed: false})
  14. .use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
  15. .use(Uppy.Instagram, { target: Uppy.Dashboard, companionUrl: 'http://localhost:3020' })
  16. .use(Uppy.GoogleDrive, { target: Uppy.Dashboard, companionUrl: 'http://localhost:3020' })
  17. .use(Uppy.Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  18. uppy.on('success', (fileCount) => {
  19. console.log(`${fileCount} files uploaded`)
  20. })
  21. </script>
  22. </body>
  23. </html>