-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
60 lines (57 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="./res/jquery-2.2.4.min.js"></script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link
rel="stylesheet"
href="./node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="./res/style.css" />
<title>کاهش حجم فایلهای صوتی</title>
</head>
<body class="rtl">
<br />
<div class="container-fluid">
<div id="messageBox">
<!-- Message To Show -->
</div>
</div>
<div class="container">
<div id="drop-area">
<form class="my-form">
<p>
<strong class="yekan">
فایل وویس رو بنداز اینجا ...
</strong>
</p>
<input
type="file"
id="fileElem"
accept="audio/*"
onchange="handleFiles(this.files)"
/>
<label class="button yekan" for="fileElem"
>یا که دستی خودت انتخاب کن</label
>
</form>
<progress
class="progressBar"
id="progress-bar"
max="100"
value="0"
></progress>
<label id="eta" style="font-weight: bolder;">0:00</label>
<hr />
<div id="gallery">
<p class="yekan" id="fileName"></p>
<p class="yekan" id="fileSize"></p>
</div>
</div>
</div>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
<script src="./app.js"></script>
</body>
</html>