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:

32 lines (30 loc) 660 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Uppy example: Multiple instances</title> </head> <body> <style> main { display: flex; justify-content: space-around; align-items: center; } h1 { text-align: center } </style> <main> <div> <h1>Instance A</h1> <div id="a"></div> </div> <div> <h1>Instance B</h1> <div id="b"></div> </div> </main> <link href="uppy.min.css" rel="stylesheet"> <script src="bundle.js"></script> </body> </html>