-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.47 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cropper</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/cropper/2.3.4/cropper.min.css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- cropper modal -->
<div id="cropper110Modal">
<div id="imageCropBox">
<div style="text-align: end;">
<button class="cropper110-close">close</button>
</div>
<section class="cropper110-page">
<div class="cropper110-box">
<div class="cropper110-cropping-box"></div>
</div>
<div>
<button class="cropper110-crop mx-3">Crop</button>
</div>
</section>
</div>
</div>
<!-- /cropper modal/ -->
<!-- form -->
<section>
<form action="">
<label for="fileUploader"></label>
<input type="file" id="fileUploader" data-image-preview="#imagePreview" accept=".jpg,.png,.jpeg" multiple>
<div id="imagePreview"></div>
</form>
</section>
<!-- /form/ -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/cropperjs/0.8.1/cropper.min.js'></script>
<script src="script.js"></script>
</body>
</html>