-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (58 loc) · 2.43 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
<!DOCTYPE>
<html lang="html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FFMpeg File Processing</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<!-- Styles -->
<link href="assets/css/jquery.filer.css" rel="stylesheet">
<link href="assets/css/themes/jquery.filer-dragdropbox-theme.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet">
<!-- Jvascript -->
<script src="http://code.jquery.com/jquery-3.1.0.min.js" crossorigin="anonymous"></script>
<script src="assets/js/jquery.filer.min.js" type="text/javascript"></script>
<script src="assets/js/jquery.isloading.min.js" type="text/javascript"></script>
<script src="assets/js/custom.js" type="text/javascript"></script>
<style>
body {
font-family: 'Roboto Condensed', sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #47525d;
background-color: #fff;
margin: 0;
padding: 20px;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee;
}
.isloading-wrapper.isloading-right{margin-left:10px;}
.isloading-overlay{position:relative;text-align:center;}.isloading-overlay .isloading-wrapper{background:#FFFFFF;-webkit-border-radius:7px;-webkit-background-clip:padding-box;-moz-border-radius:7px;-moz-background-clip:padding;border-radius:7px;background-clip:padding-box;display:inline-block;margin:0 auto;padding:10px 20px;top:10%;z-index:9000;}
/*Glyphicon Spinner*/
.glyphicon-spin {
-animation: spin .9s infinite linear;
-webkit-animation: spin2 .9s infinite linear;
}
@-webkit-keyframes spin2 {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
from { transform: scale(1) rotate(0deg);}
to { transform: scale(1) rotate(360deg);}
}
</style>
</head>
<body>
<hr>
<div id="content">
<h2>FFMPEG Library</h2>
<input type="file" name="files[]" id="filer_input2">
</div>
</body>
</html>