forked from slifty/cinemagraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·50 lines (46 loc) · 1.76 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
<html>
<head>
<script type="text/javascript" src="js/lib/jquery.min.js"></script>
<script type="text/javascript" src="js/lib/jquery.base64.min.js"></script>
<script type="text/javascript" src="js/lib/weppy.js"></script>
<script type="text/javascript" src="js/lib/Whammy.js"></script>
<script type="text/javascript" src="js/cinemagraph.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link rel="stylesheet" href="css/cinemagraph.css" type="text/css" />
<script type="text/javascript">
$(function() {
var $cinemagraph = $("#cinemagraph");
$("#frame1").show();
$("#frame1-start").click(function() {
$("#frame1").hide();
$cinemagraph.Cinemagraph();
});
$("#frame1-more").click(function() {
$("#frame1").hide();
$("#frame2").show();
});
});
</script>
</head>
<body>
<a id="github" href="https://github.com/slifty/cinemagraph"><img src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="content">
<div class="body">
<div id="cinemagraph">
<div id="frame1" class="intro">
<div id="logo">Cinemagif</div>
<p>Welcome to Cinemagif! This tool lets you make animated pictures directly in your browser.</p>
<div class="navigation">
<div class="button" id="frame1-start">Get Started</div>
<div class="button" id="frame1-more">Wait... What?</div>
</div>
</div>
<div id="frame2" class="intro">More info goes here eventually...</div>
</div>
</div>
<div class="fooder"></div>
</div>
</body>
</html>