-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
72 lines (64 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Puzzled</title>
<meta name="description" content="Make your own jigsaw puzzle!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Social media -->
<meta property="og:title" content="Puzzled">
<meta property="og:description" content="Make your own jigsaw puzzle!">
<meta property="og:url" content="http://tsi.github.io/puzzled/">
<meta property="og:image" content="http://tsi.github.io/puzzled/logo.png">
<link rel="icon" type="image/png" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Rancho" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<form>
<span class="title">Make A Puzzle =></span>
<a href="#" class="mobile-toggle">≡</a>
<div class="mobile-collpase">
<span>
<label>Image:</label>
<input type="text" id="img"/>
</span>
<span>Puzzle pieces:</span>
<span>
<label>X</label>
<input type="number" id="layoutx"/>
</span>
<span>
<label>Y</label>
<input type="number" id="layouty"/>
</span>
<span>
<label>Zoom</label>
<input type="number" id="zoom" step="10"/>%
</span>
</div>
<span class="rand" title="Random">↺</span>
</form>
<iframe id="game" frameBorder="0" src="" width="100%" height="92%">
<p>Your browser does not support iframes.</p>
</iframe>
<div class="share">
<a href="#" class="share-toggle">SHARE THIS</a>
<div>
<label>Share:</label>
<input type="text" id="share"/>
</div>
<!--<div id="fb-root"></div>
<div class="fb-like" data-href="http://tsi.github.io/puzzled/" data-send="false" data-layout="button_count" data-width="1" data-show-faces="false"></div>
<a href="https://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-text="Make A Puzzle by @shlidor">Tweet</a>-->
<div class="credit">Made by <a href="http://twitter.com/shlidor">Tsachi Shlidor</a></div>
</div>
<footer id="scripts">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<script src="js/puzzled-app.js"></script>
</footer>
</body>
</html>