-
Notifications
You must be signed in to change notification settings - Fork 6
/
modal.html
75 lines (69 loc) · 2.71 KB
/
modal.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
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pintura JavaScript example project</title>
<link
rel="stylesheet"
href="./node_modules/@pqina/pintura/pintura.css"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<h1>Pintura Image Editor</h1>
<ul>
<li><a href="/index.html">Append</a></li>
<li><a href="/modal.html">Modal</a></li>
<li><a href="/overlay.html">Overlay</a></li>
</ul>
<h2>Modal</h2>
<p><button class="modal-button">Open editor</button></p>
<p><img class="modal-result" src="" alt="" /></p>
<script type="module">
import { openDefaultEditor } from './node_modules/@pqina/pintura/pintura.js';
// modal
document
.querySelector('.modal-button')
.addEventListener('click', () => {
const editor = openDefaultEditor({
src: './image.jpeg',
stickers: [
[
'Emoji',
['⭐️', '😊', '👍', '👎', '☀️', '🌤', '🌥'],
],
[
'Markers',
[
{
src: 'sticker-one.svg',
width: '5%',
alt: 'One',
},
{
src: 'sticker-two.svg',
width: '5%',
alt: 'Two',
},
{
src: 'sticker-three.svg',
width: '5%',
alt: 'Three',
},
],
],
],
});
editor.on('load', (res) =>
console.log('modal result', res)
);
editor.on('process', (res) =>
document
.querySelector('.modal-result')
.setAttribute('src', URL.createObjectURL(res.dest))
);
});
</script>
</body>
</html>