-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths00-splash.html
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy paths00-splash.html
File metadata and controls
57 lines (57 loc) · 1.49 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
<!--
Screen: S-00 Splash
CJX Stage: Onboarding
FR Mapping: App Launch
Note: Shows for ~2s while JS bundle loads, fade-in/out animation
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>S-00 Splash</title>
<link rel="icon" type="image/png" href="assets/icon-header.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="components.css">
<style>
.splash-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: var(--color-surface);
}
.splash-image {
width: 75%;
max-width: 280px;
height: auto;
animation: splashFadeIn 0.4s ease-out forwards;
}
.splash-version {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
font: var(--text-caption);
color: var(--color-text-secondary);
animation: splashFadeIn 0.6s ease-out 0.2s both;
}
@keyframes splashFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body class="cjx-onboarding">
<div class="app-layout">
<main class="main-content">
<div class="splash-container">
<img src="assets/splash.png" alt="Scan Shot" class="splash-image">
</div>
<span class="splash-version">v1.0.0</span>
</main>
</div>
<script src="interactions.js"></script>
</body>
</html>