-
Notifications
You must be signed in to change notification settings - Fork 7
/
get-started-3.html
92 lines (92 loc) · 5.59 KB
/
get-started-3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>K2VR: Getting started</title>
<meta property="og:title" content="K2VR: Getting started"/>
<meta name="description" content="Important things to know before you begin"/>
<meta property="og:description" content="Important things to know before you begin"/>
<meta property="twitter:image:src" content="https://k2vr.tech/img/opengraph.png"/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="theme-color" content="#A369EB"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&&family=M+PLUS+Rounded+1c:wght@600&display=swap&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/get-started.css">
<link rel="icon" type="image/ico" href="img/favicon.ico">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js" crossorigin="anonymous"></script>
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</head>
<body>
<ul class="nav justify-content-end">
<a href="index.html"><div class="logo">
<p class="logotype d-none d-md-block">K2VR</p>
</div></a>
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="docs/index.html">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="https://github.com/KinectToVR">GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="https://discord.gg/YBQCRDG">Discord</a>
</li>
</ul>
<br>
<div class="jumbotron jumbotron-fluid">
<div class="container justify-content-end">
<p class="gs-progress">3 / 3</p>
<div class="row">
<div class="col-sm-4 gs-panel-hovermove">
<div class="gs-panel download-panel">
<div class="gs-icon-container"></div>
<p class="gs-title">Download<br>and install</p>
<a class="gs-button" href="https://github.com/KinectToVR/k2vr-installer-gui/releases/download/2.3.2/k2ex-installer-2.3.2.exe">Download</a>
<p class="gs-version-info">Installer 2.3.2 • K2EX 0.9.1</p>
<a href="https://github.com/kinecttovr/kinecttovr/releases" class="gs-old-versions">Older Versions</a>
<p class="gs-description">Automatically downloads and install the latest version of K2VR and the required Kinect drivers for your device, and sets up SteamVR for use with your Kinect.</p>
</div>
</div>
<div class="col-sm-4 gs-panel-hovermove">
<div class="gs-panel onboarding-panel">
<div class="gs-icon-container"></div>
<p class="gs-title">First-time setup<br>and calibration</p>
<a class="gs-button" href="docs/onboarding.html">View Instructions</a>
<p class="gs-description">Learn how to place the Kinect inside your VR playspace, how to calibrate the software to align trackers to your body and how to use the main features.</p>
</div>
</div>
<div class="col-sm-4">
<div class="row-sm-6 gs-panel-hovermove">
<a href="docs/index.html">
<div class="gs-panel-half docs-panel">
<div class="gs-icon-container"></div>
<p class="gs-title">Documentation</p>
</div>
</a>
</div>
<div class="row-sm-6 gs-panel-hovermove" style="margin-top: 1.25em;">
<a href="https://discord.gg/YBQCRDG">
<div class="gs-panel-half discord-panel">
<div class="gs-icon-container"></div>
<p class="gs-title">Discord</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>