-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (67 loc) · 4.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Clover Rescue Project</title>
<script>if(screen.width<screen.height){location.href="./mobile/index.html"}</script>
<meta name="theme-color" content="#111"/>
<link rel="apple-touch-icon" href="/assets/logo_x192.svg">
<meta name="description" content="Clover Rescue Project">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"/>
<link rel="icon" type="image/x-icon" href="/assets/fav.ico">
<link rel="manifest" href="./manifest.json">
<link rel = 'stylesheet' href = 'index.css'/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.8.0/gsap.min.js" integrity="sha512-eP6ippJojIKXKO8EPLtsUMS+/sAGHGo1UN/38swqZa1ypfcD4I0V/ac5G3VzaHfDaklFmQLEs51lhkkVaqg60Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.socket.io/4.3.2/socket.io.min.js" integrity="sha384-KAZ4DtjNhLChOB/hxXuKqhMLYvx3b5MlT55xPEiNmREKRzeEm+RVPlTnAn0ajQNs" crossorigin="anonymous"></script>
<script data-pace-options='{ "ajax": false}' src="https://cdn.jsdelivr.net/npm/pace-js@latest/pace.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pace-js@latest/pace-theme-default.min.css">
<link rel ="stylesheet" href="loading-bar.css">
</head>
<body>
<div id = 'heading'>
<img id = 'background' src = './assets/head.jpg' alt='clover'/>
<div id = 'menucont'>
<button id = 'login' onclick = "location.href = './login'">Sign In</button>
<p onclick = 'document.getElementById("p").scrollIntoView({block: "center", behavior: "smooth"});' class = 'menu' id = 'm1'>Project</p>
<p onclick = 'document.getElementById("rh").scrollIntoView({block: "center", behavior: "smooth"});' class = 'menu' id = 'm2'>Hardware</p>
<p onclick = 'document.getElementById("password").scrollIntoView({block: "center", behavior: "smooth"});' class = 'menu' id = 'm3'>Sign Up</p>
<button id = 'app' onclick = "location.href = './app/desktop/'">App</button>
</div>
<h1 id='title'>The Clover Rescue Project</h1>
<img id = 'down' src = './assets/line-angle-down.svg' alt='down' onclick = 'document.getElementById("p").scrollIntoView({block: "center", behavior: "smooth"});' />
</div>
<div id = 'main'>
<img id = 'mb1' src = './assets/mb1.jpg' alt='tx'/>
<div id="projectCont">
<p id = 'pt' ><b>Project</b></p>
<p id = 'p'>The key feature of our software is that users can manage their Clover from anywhere in the world!<br/><br/>
This software replaces FTP and SSH (users can upload the code to their drone and run it directly from our website). <br/>
If radio communication with the Clover is lost, it can be returned to the user's or takeoff location with just one click. <br/>
Users can monitor the status in realtime, as well as location, camera data, and airborne position data of the drone.<br/>
There are functions that can be useful in emergency situations, such as landing, hovering and disarming the drone remotely from our website!</p><br/><br/><br/>
</div>
<div id="hardwareCont">
<p id = 'rht' >Required Hardware</p>
<p id = 'rh'>
The all you need - Raspberry Pi 3/4, camera and USB WIFI Modem!
</p>
<div id="hardImgCont">
<img id = 'mb2' src = './assets/rpi4.png' alt='rpi4'/>
<img id = 'mb3' src = './assets/rpicamera.png' alt='camera'/>
<img id = 'mb4' src = './assets/modem.png' alt='modem'/>
</div>
</div>
<div id = 'signupcont'>
<p id = 'rt' >Sign up</p>
<p id = 'rt2'>to get The Clover Rescue Project software for free!</p>
<input placeholder='Nickname' id = 'nickname'/>
<input placeholder='Password' id = 'password' type='password'/>
<button id = 'signup' onclick = 'signup();'>Sign Up</button>
<p id = 'status'></p>
</div>
<p id = 'floor'>Clover Rescue Team | CopterHack 2022 | <a href="./termsofuse.html">Terms of Use</a> | <a href="./license.html">License Agreement</a> | <a href="./privacypolicy.html">Privacy Policy</a></p>
</div>
<img id = 'arrowtop' src = './assets/line-angle-down.svg' onclick="smoothJumpUp();" alt='^'/>
<div id = 'loading'><img src = '/assets/logo_x192.svg' id='loadingLogo'/></div>
<script src = 'index.js'></script>
</body>
</html>