-
Notifications
You must be signed in to change notification settings - Fork 0
/
sc1.html
95 lines (78 loc) · 3.03 KB
/
sc1.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial scale=1">
<title>Untitled Document</title>
<link rel="stylesheet" href="Up.css">
</head>
<body>
<div class="bg">
<div class="phone onboarding">
<div class="next_btn"></div>
<div class="prev_btn"></div>
<div class="screenwrapper top_onboarding">
<img class="yellowblob" id="yellow1" src="images/yellow-blob.svg" />
<img class="yellowblob" id="yellow2" src="images/yellow-blob.svg" />
<img class="yellowblob" id="yellow3" src="images/yellow-blob.svg" />
<div class="card_row">
<div class="card_wrapper first">
<div class="onboardcard">
<div class="title">Welcome to Up!</div>
<img src="images/red-panda-balloon.svg" />
<div class="explanation ">Welcome to Up!
With Up, you will practice maintaining the most effective concentration time of 90 minutes while saving endangered animal friends! </div>
</div>
</div>
<div class="card_wrapper second">
<div class="onboardcard">
<div class="title">Focused Time</div>
<img id="timer" src="images/timer.svg" />
<div class="explanation "><p>
Malcom Gladwell states that becoming a master of something requires 10,000 hours of practice </p>
<p>
We will make our first step towards 1,000 hours with a maximum of 90 minutes each session.</p>
<p>
We will keep records of your sessions to let you about your progress.
</p>
</div>
</div>
</div>
<div class="card_wrapper third">
<div class="onboardcard">
<div class="title">Controlled Breathing</div>
<img id ="balloon_on" src="images/balloon.svg" />
<div class="explanation "> <p>After each session, you will be led to a short breathing exercise that will help you relax and restore brain resources.</p>
<p>
You will be rewarded with a balloon after each breathing exercises, which you can use to help escort endangered animals to your island. </p>
</div>
</div>
</div>
<div class="card_wrapper fourth">
<div class="onboardcard">
<div class="title">Endangered Species</div>
<img id="whale" src="images/fin-whale.svg" />
<div class="explanation "> <p>You will be rewarded with an endangered animal once you have collected enough balloons. These animals will be relaxing at your island so make sure to visit them often!
</p>
<p>
Are you ready to begin? Let’s get to it! </p>
</div>
</div>
</div>
</div>
<div class="wrap_nav-dot">
<div class="nav-dot active first"></div>
<div class="nav-dot second"></div>
<div class="nav-dot third"></div>
<div class="nav-dot fourth"></div>
</div>
<a href="sc2.html">
<div class="button dark deactive">Get Started</div>
</a> </div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="up.js"></script>
<script>sc1();</script>
</body>
</html>