mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
23 lines
812 B
HTML
23 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title></title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://releases.transloadit.com/uppy/v1.25.0/uppy.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<button id="uppyModalOpener">Open Modal</button>
|
|
<script src="https://releases.transloadit.com/uppy/v1.25.0/uppy.min.js"></script>
|
|
<script>
|
|
const uppy = Uppy.Core({debug: true, autoProceed: false})
|
|
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
|
|
.use(Uppy.Webcam, {target: Uppy.Dashboard})
|
|
.use(Uppy.Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
|
|
|
|
uppy.on('success', (fileCount) => {
|
|
console.log(`${fileCount} files uploaded`)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|