-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (75 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Border.io - Add Border to Images in Bulk</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/loader.min.css">
<style>
.uploaded-image {
max-width: 100%;
max-height: 70vh;
margin: 0 auto;
object-fit: contain;
border: 1px solid black;
background-color: #181818;
}
.input-image-canvas-list,
.output-image-canvas-list {
display: none;
}
</style>
</head>
<body>
<div class="pre-wrap" id="preloader">
<div class="wrap">
<div class="loading">
<div class="bounceball"></div>
<div class="text">NOW LOADING</div>
</div>
</div>
</div>
<!-- Header Container -->
<div class="container-fluid px-0 py-4 mb-3 border-bottom border-success text-center"
style="background-color: #181818;">
<h1 class="display-3 text-success">
Border.io
</h1>
<br>
<h2 class="lead text-light">Add Borders to Images in Bulk</h2>
</div>
<br>
<div class="container d-flex">
<div class="input-group mb-3">
<div class="custom-file">
<input type="file" class="custom-file-input" id="filesInput" multiple accept="image/*">
<label class="custom-file-label" for="filesInput">Choose files...</label>
</div>
</div>
</div>
<div class="container d-flex">
<button class="btn btn-sm btn-success ml-auto" id="download-button" disabled><i class="fa fa-download"></i>
Download</button>
</div>
<div class="output-image-canvas-list">
</div>
<div class="container">
<div class="image-gallery row">
</div>
</div>
<div class="input-image-canvas-list">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.6.0/jszip.min.js"
integrity="sha512-uVSVjE7zYsGz4ag0HEzfugJ78oHCI1KhdkivjQro8ABL/PRiEO4ROwvrolYAcZnky0Fl/baWKYilQfWvESliRA=="
crossorigin="anonymous" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.0/FileSaver.min.js"
integrity="sha512-csNcFYJniKjJxRWRV1R7fvnXrycHP6qDR21mgz1ZP55xY5d+aHLfo9/FcGDQLfn2IfngbAHd8LdfsagcCqgTcQ=="
crossorigin="anonymous" defer></script>
<script src="./js/index.min.js" defer></script>
</body>
</html>