-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandrec.html
More file actions
executable file
·110 lines (97 loc) · 2.96 KB
/
handrec.html
File metadata and controls
executable file
·110 lines (97 loc) · 2.96 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.3.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="fonts/vicons/vicons-font.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/menu.css" />
</head>
<body>
<div class="header-container">
<header class="wrapper clearfix">
<h1 class="title"><a href="/">Playground</a></h1>
</header>
</div>
<div class="main-container">
<div id="wrap" class="right">
<div class="menu" id="menu">
<div class="menu-wrapper">
<ul class="menu-items">
<li class="menu-item">
<button class="menu-item-button">
<i class="menu-item-icon icon icon-reply"></i>
</button>
<div class="menu-item-bounce"></div>
</li>
<li class="menu-item">
<button class="menu-item-button">
<i class="menu-item-icon icon icon-box"></i>
</button>
<div class="menu-item-bounce"></div>
</li>
<li class="menu-item">
<button class="menu-item-button">
<i class="menu-item-icon icon icon-trash"></i>
</button>
<div class="menu-item-bounce"></div>
</li>
</ul>
<button class="menu-toggle-button">
<i class="fa fa-plus menu-toggle-icon"></i>
</button>
</div>
</div>
</div>
<div class="main wrapper clearfix">
<article>
<header>
<h1>Hand Recognition</h1>
<section>
<p>
Switch your phone from one hand to another. The Menu should move from left to right.
</p>
<p>
Future Features:
</p>
<ul>
<li>
sticky Menu
</li>
<li>
Responsive stuff
</li>
<li>
Force Touch
</li>
</ul>
<p>Menu is copied from tympanus.net <a href="https://tympanus.net/codrops/2015/03/10/creative-gooey-effects/" target="_blank">Check it out here</a></p>
</section>
<footer>
<h3>Debug Output</h3>
<div id="alpha">0</div>
<div id="beta">0</div>
<div id="gamma">0</div>
</footer>
</article>
</div>
<!-- #main -->
</div>
<!-- #main-container -->
<div class="footer-container">
<footer class="wrapper">
<h3><a href="https://twitter.com/falsanu" target="_blank">@falsanu</a></h3>
</footer>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<script src="js/TweenMax.min.js"></script>
<script src="js/menu.js"></script>
</body>
</html>