-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
54 lines (49 loc) · 2.23 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="The fastest and easiest damned GIF reverser on the internet." />
<title>GIF Reverse - The fastest and easiest damned GIF reverser on the internet.</title>
<link rel="stylesheet" href="assets/css/style.css" />
<script data-main="assets/js/main-built" src="assets/js/require.js"></script>
</head>
<body>
<header role="banner">
<h1>GIF<span role="presentation" class="accessiblespace"> </span>Reverse</h1>
<h2>The fastest and easiest damned GIF reverser on the internet.</h2>
</header>
<div class="gif-drop">
<span class="gif-drop-icon">☆</span>
<div class="gif-drop-text">
Drag ‘n’ Drop your GIF Here.
<br />
<small>or</small>
<br />
<button id="source-url">Enter a URL</button> • <button id="source-chooser">Choose a File</button>
</div>
<img src="#" alt="Reversed gif" class="gif" />
<input type="file" id="source-gif" accept="image/gif" />
<progress id="convert-progress"></progress>
</div>
<button id="send-to-imgur"><span class="send-status">Send</span> to <span class="imgur-logo">Imgur</span> <span class="send-arrow">»</span></button>
<footer role="contentinfo">
<p>
No uploading, no watermarks, no bullshit. A hack by <a href="http://www.twitter.com/chrisdary" rel="me">@chrisdary</a>.
</p>
<p>
Greets: <a href="https://github.com/jnordberg/gif.js">jnordberg for gif.js</a>, <a href="https://github.com/shachaf/jsgif">shachaf for jsgif</a>
</p>
<p>
<a href="https://github.com/umbrae/gifreverse">Source is on Github</a>
</p>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46279713-1', 'gifrever.se');
ga('send', 'pageview');
</script>
</body>
</html>