-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (105 loc) · 4.54 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="keywords" content="hier, einfuegen">
<meta name="description" content="Beschreibung, angezeigt in Suchmaschiene">
<meta name="robots" content="(un)index, (un)follow">
<!--- suchmaschiene soll durchsuchen: index=Startseite follow = alle sub-seiten(z.B. info.ecosia.org/about)-->
<meta name="revisit-after" content="x months">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>leek-launcher</title>
</head>
<body>
<!--Header-->
<header id="header">
<a class="logoimg" href="index.html">
<img src="src/leek.png" alt="logo"> </a>
<a class="logo-title" href="index.html">
<h1>leek-launcher</h1> </a>
<h2>a new launching experience</h3>
<hr>
</header>
<!--Navigation Section-->
<nav id="nav_section">
<label for="hamburger">☰</label>
<input type="checkbox" id="hamburger"/>
<div id="nav_items">
<a href="index.html">Home</a>
<a href="index.html">News</a>
<a href="index.html">Features</a>
<a href="index.html">Goals</a>
<a href="index.html">Screenshots</a>
<a href="http://github.com/tomsom/leek-launcher">Github</a>
</div>
</nav>
<div id="sections">
<!--Project Description-->
<section class="uneven_section">
<h3>A gesture based, FOSS Android launcher.</h3><hr>
<p>
A try to create different launch experience <br>
If it'll work out is yet to be seen <br>
Visite the <a href="https://github.com/tomsom/leek-launcher">Github page</a> to follow the project <br>
</p>
</section>
<!--Concept with Pictures-->
<section class="even_section">
<h3>The Concept:</h3><hr>
<div class="images">
<img src="src/ll_concept1.png" alt="concept1">
<img src="src/ll_concept2.png" alt="concept1">
<img src="src/ll_concept3.png" alt="concept1">
<img src="src/ll_concept4.png" alt="concept1">
<img src="src/ll_concept5.png" alt="concept1">
<img src="src/ll_concept6.png" alt="concept1">
</div>
</section>
<!--Project Goals-->
<section class="uneven_section">
<h3>Project Goals:</h3><hr>
<ul>
<li>Make it easy and fast to lauch apps only with your thumb</li>
<li> Keep a nice and clean homescreen</li>
<li>Easy opening-access to as many apps as you like</li>
<li>No chaos as in an appdrawer</li>
<li>No slow, inconvenient search</li>
</ul>
</section>
<!--Implementation Goals-->
<section class="even_section">
<h3>Implementation Goals:</h3><hr>
<ul>
<li>App works as launcher(MAIN, HOME, DEFAULT in AndroidManifest.xml)</li>
<li>Add settings activity</li>
<li>App opening capabilities</li>
<li>Detect all apps</li>
<li>Get app icons</li>
<li>Gesture detection</li>
<li>Add custom gestures, by drawing them on the sceen or pulling and bending vectors with various
tolerances</li>
<li>Add gesture presets like apps sorted by color, beginning letter, etc</li>
<li>Widget support</li>
<li>Clean UI, customizable</li>
<li>Add translations</li>
<li>Add multiple pages for more widget space</li>
<li>Navigation and status bar cosmetics</li>
</li>
</ul>
</section>
<!--Footer-->
<footer>
<ul class="footer_list">
<li class="footer_list"><a href="">About</a></li>
<li class="footer_list"><a href="">News</a></li>
<li class="footer_list"><a href="">Features</a></li>
<li class="footer_list"><a href="">Goals</a></li>
<li class="footer_list"><a href="">Screenshots</a></li>
<li class="footer_list"><a href="http://github.com/tomsom/leek-launcher">Github</a></li>
</ul>
<a href="index.html#header">Go to top</a>
<p class="footer_text">Website and project are work in progress</p>
</footer>
</div>
</body>