-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
190 lines (168 loc) · 6.77 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<html>
<head>
<title>Debt Ninja</title>
<link href="https://unpkg.com/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
<style>
html {
background: black;
}
.btn-download {
background: white;
color: black;
box-shadow: 0px 0px 15px 0px white;
}
.dn-features {
display: none;
}
.dn-features.active {
display: block;
}
.dn-features .letter {
display: inline-block;
line-height: 1em;
}
</style>
</head>
<body>
<div class="flex flex-col h-screen">
<div
class="h-16 bg-black text-white hover:bg-white hover:text-black w-full flex justify-between items-center px-4 text-lg">
<a class="mx-2" href="https://github.com/debt-ninja/debt-ninja/releases">
<i class="fas fa-history"></i>
<span data-i18n="releases">Releases</span>
</a>
<a class="mx-2" href="https://github.com/debt-ninja/debt-ninja">
<i class="fab fa-github"></i>
</a>
</div>
<div class="flex justify-center items-center flex-grow">
<div class="text-white flex flex-wrap">
<div class="flex-grow flex justify-center">
<div id="ninja">
<img src="./logo_white.svg" alt="Debt Ninja Logo">
</div>
</div>
<div class="flex flex-col ml-4">
<div class="flex items-start">
<span class="text-6xl font-hairline">Debt Ninja</span>
<a href="https://github.com/debt-ninja/debt-ninja/releases" class="font-black">v0.1</a>
</div>
<a href="#" class="btn-download rounded-full py-4 text-lg text-center m-4 font-medium">
<span data-i18n="download">Download for</span>
<i class="fab fa-android"></i>
</a>
</div>
</div>
</div>
<div class="h-64 flex items-center justify-center text-white uppercase font-black font-mono">
<a href="#shareReceipts" class="dn-features active" data-i18n="shareReceipts">OOO</a>
<a href="#monthlyStats" class="dn-features" data-i18n="monthlyStats">---</a>
<a href="#alwaysDebtView" class="dn-features" data-i18n="alwaysDebtView">XXX</a>
<a href="#smartFeatures" class="dn-features" data-i18n="smartFeatures">BBB</a>
</div>
</div>
<div class="w-full bg-white">
<svg viewbox="0 0 100 10">
<polygon points="0,0 100,0 0,10" fill="black"></polygon>
</svg>
</div>
<div class="bg-white flex flex-col px-8">
<div id="shareReceipts" class="h-48 flex justify-end">
<h1 data-i18n="shareReceipts"></h1>
</div>
<div id="monthlyStats" class="h-48 flex">
<h1 data-i18n="monthlyStats"></h1>
</div>
<div id="alwaysDebtView" class="h-48 flex justify-end">
<h1 data-i18n="alwaysDebtView"></h1>
</div>
<div id="smartFeatures" class="h-48 flex">
<h1 data-i18n="smartFeatures"></h1>
</div>
</div>
<footer>
<div class="w-full bg-white">
<svg viewbox="0 0 100 5">
<polygon points="0,5 100,5 100,0" fill="black"></polygon>
</svg>
</div>
<div class="bg-black text-white flex justify-between p-4">
<span>© <span id="year">2019</span></span>
<span>Debt-Ninja</span>
</div>
</footer>
<script defer src="https://use.fontawesome.com/releases/v5.8.2/js/all.js"
integrity="sha384-DJ25uNYET2XCl5ZF++U8eNxPWqcKohUUBUpKGlNLMchM7q4Wjg2CUpjHLaL8yYPH"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/animejs"></script>
<script>
// Translations
const i18nElements = document.querySelectorAll('[data-i18n]')
const TRANSLATIONS_DE = {
download: "Herunterladen für",
releases: "Veröffentlichte Versionen",
shareReceipts: "Teile deine Rechnungen mit deinen Mitbewohnern",
monthlyStats: "Immer deine Ausgaben wissen",
alwaysDebtView: "Den Überblick über deine Schulden behalten",
smartFeatures: "Benutze Intelligente Werkzeuge um Rechnungen noch schneller abwickeln"
}
const TRANSLATIONS_EN = {
download: "Download for",
releases: "Releases",
shareReceipts: "Share your bills with your roommates",
monthlyStats: "Always know your expenses",
alwaysDebtView: "Keep track of your debts",
smartFeatures: "Use intelligent tools to handle receipts even faster"
}
i18nElements.forEach((x) => {
const translations = navigator.language.includes('de') ? TRANSLATIONS_DE : TRANSLATIONS_EN
x.innerHTML = translations[x.dataset.i18n] || '-'
})
// Translations END
// Feature animation
const featureSpans = document.querySelectorAll('.dn-features')
featureSpans.forEach((fs) => {
fs.innerHTML = fs.innerHTML.replace(/([^\x00-\x80]|\w)/g, "<span class='letter'>$&</span>")
})
const animations = [{
targets: '.dn-features.active .letter',
translateX: [40, 0],
translateZ: 0,
opacity: [0, 1],
easing: "easeOutExpo",
duration: 1200,
delay: function (el, i) {
return 500 + 30 * i;
}
}, {
targets: '.dn-features.active .letter',
translateX: [0, -30],
opacity: [1, 0],
easing: "easeInExpo",
duration: 1100,
delay: function (el, i) {
return 100 + 30 * i;
}
}]
let animation = anime.timeline().add(animations[0]).add(animations[1])
const nextAnimation = () => {
const current = document.querySelector('.dn-features.active')
let next = document.querySelector('.dn-features.active + .dn-features')
console.log(typeof next)
if (!next) {
next = document.querySelectorAll('.dn-features')[0]
}
next.classList.add('active')
current.classList.remove('active')
animation = anime.timeline().add(animations[0]).add(animations[1])
animation.finished.then(nextAnimation)
}
animation.finished.then(nextAnimation)
// Feature animation END
</script>
<script>
//Copyright info
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</body>
</html>