UNPKG

uppy

Version:

Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:

49 lines (42 loc) 999 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Uppy test page</title> </head> <body> <style> main { max-width: 700px; margin: auto; } #uppyDragDrop-progress, #uppyi18n-progress { position: relative; } </style> <main> <h2>Uppy DragDrop + Tus</h2> <div> <div id="uppyDragDrop"></div> <div id="uppyDragDrop-progress"></div> </div> <h2>Uppy DragDrop i18n + XHRUpload</h2> <div> <div id="uppyi18n"></div> <div id="uppyi18n-progress"></div> </div> <h2>Uppy Dashboard + Tus</h2> <div> <div id="uppyDashboard"></div> </div> <h2>Uppy XHRUpload `limit`</h2> <div> <div id="uppyXhrLimit"></div> </div> </main> <link href="uppy.min.css" rel="stylesheet"> <script src="bundle.js"></script> </body> </html>