index.html 1.0 KB

1234567891011121314151617181920212223242526
  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/v3.10.0/uppy.min.css" rel="stylesheet">
  8. </head>
  9. <body>
  10. <button id="uppyModalOpener">Open Modal</button>
  11. <noscript>This web page requires JavaScript to work properly.</noscript>
  12. <script type="module">
  13. import { Uppy, Dashboard, Instagram, GoogleDrive, Tus } from "https://releases.transloadit.com/uppy/v3.10.0/uppy.min.mjs"
  14. const uppy = new Uppy({debug: true, autoProceed: false})
  15. .use(Dashboard, { trigger: '#uppyModalOpener' })
  16. .use(Instagram, { target: Dashboard, companionUrl: 'http://localhost:3020' })
  17. .use(GoogleDrive, { target: Dashboard, companionUrl: 'http://localhost:3020' })
  18. .use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
  19. uppy.on('success', (fileCount) => {
  20. console.log(`${fileCount} files uploaded`)
  21. })
  22. </script>
  23. </body>
  24. </html>