-
Notifications
You must be signed in to change notification settings - Fork 158
/
index.html
67 lines (64 loc) · 2.21 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
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hygraph Focal Point UI extension</title>
<link rel="stylesheet" href="./style.css" />
<script src="https://cdn.jsdelivr.net/npm/@graphcms/[email protected]/lib/zoid.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@graphcms/[email protected]/dist/gcuix.umd.production.min.js"></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div class="container">
<button id="expand">Expand</button>
<div class="focal-point">
<div class="controls">
<div class="picker">
<img
id="originalImage"
draggable="false"
src="https://via.placeholder.com/900x675?text=This+is+a+placeholder+image"
ondragstart="return false;"
/>
<div class="dot"></div>
</div>
</div>
<div class="previews">
<div class="collage aspect-square">
<!--
inline JS isn't what we want, BUT onload seems
to be the most dependable solution to know
when we can run a script which is depending
on a specific image.
-->
<div class="preview-2-1">
<img
id="preview-2-1"
draggable="false"
src="https://via.placeholder.com/900x675?text=This+is+a+placeholder+image"
/>
</div>
<div class="preview-1-2">
<img
id="preview-1-2"
draggable="false"
src="https://via.placeholder.com/900x675?text=This+is+a+placeholder+image"
/>
</div>
<div class="preview-1-1">
<img
id="preview-1-1"
draggable="false"
src="https://via.placeholder.com/900x675?text=This+is+a+placeholder+image"
/>
</div>
</div>
</div>
</div>
</div>
<div id="coords">-</div>
<script src="focal.js"></script>
<script src="uix.js"></script>
</body>
</html>