-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
66 lines (60 loc) · 1.88 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FilePond Plugin Image Preview Demo</title>
<link
href="https://unpkg.com/filepond/dist/filepond.css"
rel="stylesheet"
/>
<link href="./dist/filepond-plugin-image-preview.css" rel="stylesheet" />
</head>
<body>
<input type="file" />
<script src="https://unpkg.com/filepond-plugin-file-metadata/dist/filepond-plugin-file-metadata.js"></script>
<script src="https://unpkg.com/filepond-plugin-image-crop/dist/filepond-plugin-image-crop.js"></script>
<script src="./dist/filepond-plugin-image-preview.js"></script>
<script src="https://unpkg.com/filepond/dist/filepond.js"></script>
<script>
// Register the plugin with FilePond
FilePond.registerPlugin(
FilePondPluginFileMetadata,
FilePondPluginImageCrop,
FilePondPluginImagePreview
);
// Get a reference to the file input element
const inputElement = document.querySelector('input[type="file"]');
// Create the FilePond instance
const pond = FilePond.create(inputElement, {
imageCropAspectRatio: "1:1",
fileMetadataObject: {
markup: [
[
"rect",
{
left: 0,
right: 0,
bottom: 0,
height: "60px",
backgroundColor: "rgba(0,0,0,.5)",
},
],
[
"image",
{
right: "10px",
bottom: "10px",
width: "128px",
height: "34px",
src: "./filepond-logo.svg",
fit: "contain",
},
],
],
},
});
pond.addFile("./beach.jpeg");
</script>
</body>
</html>