-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
26 lines (26 loc) · 980 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<style>
.loading {
background: #f0f0f0;
text-align: center;
padding: 100px 30px;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- <script type="module" src="../dist/index.js"></script> -->
<script type="module" src="https://unpkg.com/@github/image-crop-element@latest/dist/index.js"></script>
<title>image-crop-element demo</title>
</head>
<body>
<image-crop src="./ams.jpg" tabindex="0">
<div data-loading-slot class="loading">loading</div>
<input type="text" data-image-crop-input="x" name="x" size="4" aria-label="x">
<input type="text" data-image-crop-input="y" name="y" size="4" aria-label="y">
<input type="text" data-image-crop-input="width" name="width" size="4" aria-label="width">
<input type="text" data-image-crop-input="height" name="height" size="4" aria-label="height">
</image-crop>
</body>
</html>