-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
208 lines (188 loc) · 9.69 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./assets/css/index.css"/>
<title>Agora Gesture Video Chat</title>
</head>
<body class="d-flex flex-column min-vh-100 container-fluid">
<header>
<nav class="d-flex flex-row flex-wrap container">
<div class="nav pt-2">
<a class="nav-link active fw-bold fs-4 text-dark" aria-current="page" href="#">PoseCall</a>
<a class="nav-link fs-5 mt-1 text-dark" href="#features">Features</a>
<a class="nav-link fs-5 mt-1 text-dark" href="#faqs">FAQs</a>
</div>
<div class="d-none">middle div</div>
<div class="pt-3 ms-auto">
<a class="btn btn-sm text-white bg-base-blue align-middle pt-1" href="./videochat.html">Try Now</a>
</div>
</nav>
<!-- banner -->
<div
class="p-4 mt-4 bg-turquoise rounded min-h-75 container d-flex flex-lg-row flex-column justify-content-center">
<div class="mw-100 p-1">
<img src="./assets/img/home_header.jpg" alt="home header" class="w-100 rounded">
</div>
<div class="container">
<h1>Gesture based Video Chat</h1>
<p class="p-2 mt-4 mb-4 fs-6 lh-lg font-monospace">
This is a gesture based video chat web app that uses Agora.io to set up a WebRTC interface but with
the twist of AI! I have added gesture based control which uses computer vision algorithms such as
posenet to detect a pose and trigger functions accordingly.
</p>
<a class="btn btn-lg text-white bg-base-blue" href="./videochat.html">Try for free</a>
</div>
</div>
</header>
<!-- Main content -->
<content class="container my-4">
<!-- row 1 -->
<div id="features">
<div class="d-flex flex-md-row flex-column justify-content-center py-4">
<div class="container">
<img src="assets/img/content_1.jpg" class="mw-50 mw-100">
</div>
<div class="container d-flex flex-column justify-content-evenly">
<div class="container d-flex flex-row justify-content-between w-75">
<span class="fs-5">
Real Time Video Chat
</span>
<!-- middle placeholder -->
<img src="./assets/svg/Camera video fill.svg" style="width: 2.6rem;">
</div>
<div class="container d-flex flex-row justify-content-between w-75">
<span class="fs-5">
Powered by Computer Vision
</span>
<img src="./assets/svg/Eye fill.svg" style="width: 2.6rem;">
</div>
</div>
</div>
<!-- row 2 -->
<div class="d-flex flex-md-row flex-column justify-content-center py-4">
<div class="container d-flex flex-column justify-content-evenly">
<div class="container d-flex flex-row justify-content-between w-75">
<span class="fs-5">
with added chat functionality
<span class="badge rounded-pill bg-secondary">coming soon!</span>
</span>
<!-- middle placeholder -->
<img src="./assets/svg/Chat quote fill.svg" style="width: 2.6rem;">
</div>
<div class="container d-flex flex-row justify-content-between w-75">
<span class="fs-5">
Multiple participants allowed
</span>
<img src="./assets/svg/Person plus fill.svg" style="width: 2.6rem;">
</div>
</div>
<div class="container">
<img src="assets/img/content_2.jpg" class="mw-50 mw-100 rounded">
</div>
</div>
</div>
</content>
<!--div for FAQ -->
<section class="accordion-section clearfix mt-3" aria-label="Question Accordions">
<div id="faqs">
<div class="container">
<h2>FAQs</h2>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading p-3 mb-3" role="tab" id="heading0">
<h3 class="panel-title">
<a class="collapsed" role="button" title="" data-toggle="collapse" data-parent="#accordion"
href="#collapse0" aria-expanded="true" aria-controls="collapse0">
What are the benefits of PoseCall?
</a>
</h3>
</div>
<div id="collapse0" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading0">
<div class="panel-body px-3 mb-4">
<p>With PoseCall, you can easily start up a real time video call and connect with friends
and family. Other Benfits include :</p>
<ul>
<li>Easy to use UI.</li>
<li>Connect using one-to-one or group calls</li>
<li>Added Gesture Controls to aid old/disabled people and giving users a new
experience
</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3 mb-3" role="tab" id="heading1">
<h3 class="panel-title">
<a class="collapsed" role="button" title="" data-toggle="collapse" data-parent="#accordion"
href="#collapse1" aria-expanded="true" aria-controls="collapse1">
How to set-up a call on PoseCall?
</a>
</h3>
</div>
<div id="collapse1" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading1">
<div class="panel-body px-3 mb-4">
<p>Its pretty easy. just follow these steps :</p>
<ul>
<li>Create a Developer account on agora.io</li>
<li>Get an appID as well as Token</li>
<li>Enter the details in the prompt</li>
<li>And voila! you're added to the call</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading p-3 mb-3" role="tab" id="heading2">
<h3 class="panel-title">
<a class="collapsed" role="button" title="" data-toggle="collapse" data-parent="#accordion"
href="#collapse2" aria-expanded="true" aria-controls="collapse2">
How to use the Gesture feature on PoseCall ?
</a>
</h3>
</div>
<div id="collapse2" class="panel-collapse collapse" role="tabpanel" aria-labelledby="heading2">
<div class="panel-body px-3 mb-4">
<p>Use the gesture toggle button to activate gesture functionality and control the video
call using the following gesture :</p>
<ul>
<li>put your right hand over your eyes to turn off the camera</li>
<li>put your left hand over your mouth to mute yourself</li>
<li>raise your right hand to turn on the camera</li>
<li>show a thumbs up from your left hand to unmute yourself</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<!-- footer -->
<footer class="mt-auto text-center pb-2">
<p>
<!-- Developed by Yuvraj Singh Pathania
<br> -->
Powered by
</p>
<img src="./assets/svg/agora_logo.svg" alt="Agora logo" style="max-width: 18%; margin-top: -1rem;">
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"
crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
</body>
</html>