forked from AR-js-org/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AR.js Studio</title>
<link rel="shortcut icon" href="assets/img/favicon.ico" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="components/main/main.css" />
<!-- import the webpage's javascript file -->
<script src="components/header/header.js"></script>
<script src="components/main/index.js"></script>
</head>
<body>
<page-header assetsUrl="assets"></page-header>
<div class="background">
<!-- to be removed on release -->
<div class="beta">This is an alpha version. Features are not finished, bugs may be present. We will remove this disclaimer as soon as AR.js Studio reaches a stable version.</div>
<div class="content">
<p class="title">Web-enabled AR experiences</p>
<p class="paragraph">
AR.js studio is an open-source AR development environment for creating
augmented web experiences. You can create location or marker-based AR
applications and deploy them straight to web. Working with AR.js
studio doesn’t require any knowledge of coding. You can start working
on your project now.
</p>
<img class="splashscreen" src="assets/img/splashscreen.png"/>
<p class="lead">Pick your project type</p>
<div>
<label class="radio-container">
Location-based
<input
id="location"
type="radio"
name="radio"
onclick="radioOnclick(this)"
/>
<span class="checkmark"></span>
</label>
<label class="radio-container">
Marker-based
<input
id="marker"
type="radio"
name="radio"
onclick="radioOnclick(this)"
/>
<span class="checkmark"></span>
</label>
<a onclick="anchorOnclick(this)" id="start-building" class="primary-button">Start building</a>
<div id="error" class="error" style="visibility: hidden;">Please, select a project type.</div>
</div>
</div>
</div>
</body>
</html>