-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
76 lines (74 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gifie</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-Knob/1.2.13/jquery.knob.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="app.js"></script>
<script src="gifie.js"></script>
</head>
<body>
<div class="container">
<div>
<h1>gifie</h1>
<p>Make a gif-selfie with your webcam!</p>
<p><a href="https://github.com/eirikb/gifie">Source @ GitHub</a></p>
<h2 id="imgur-upload">Uploading to imgur...</h2>
<div class="group">
<label>Quality</label>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-sm btn-default">
<input id="quality-bad" name="quality" type="radio"> Bad
</label>
<label class="btn btn-sm btn-default active">
<input name="quality" type="radio" checked="checked"> Crap
</label>
</div>
</div>
<div class="group">
<label>Length</label>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-sm btn-default active">
<input id="length-short" name="length" type="radio" checked="checked"> Short
</label>
<label class="btn btn-sm btn-default">
<input name="length" type="radio"> Shorter
</label>
</div>
</div>
<div class="group">
<div id="error" class="alert alert-danger">
gifie does not work with your browser
</div>
<button id="record" type="button" class="btn btn-default btn-lg btn-block">
<span class="glyphicon glyphicon-facetime-video"></span>
<span class="info">Record</span>
</button>
<input id="countdown" type="text" data-max="200" data-displayInput="false" data-readOnly="true">
<input id="loader" type="text" data-cursor="true" data-displayInput="false" data-readOnly="true">
<div>
<a id="gifLink" target="_blank">
<img id="gif" class="img-rounded">
</a>
</div>
<div id="imgur">
<a class="btn btn-default" href="https://api.imgur.com/oauth2/authorize?response_type=token">
<span class="glyphicon glyphicon-cloud-upload"></span>
<span class="glyphicon glyphicon-user"></span>
Post to imgur
</a>
<a class="btn btn-default" href="#">
<span class="glyphicon glyphicon-cloud-upload"></span>
Post anonymously to imgur
</a>
</div>
</div>
</div>
</div>
</body>
</html>