-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (85 loc) · 5.4 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/homepage.css">
<link rel="stylesheet" href="css/fonting.css">
<link rel="icon" type="image/png" href="assets/images/branding/Av_Logo_Rounded_Corners_32x32.png" sizes="32x32">
<title>Apex Visual</title>
</head>
<body>
<div class="homegrid">
<!--Header-->
<div class="header">
<div class="headercontentgrid">
<!--The logo-->
<a href="index.html" class="headerlogo">
<img id="apexvisualwordmarkimg" src="assets/images/branding/Wordmark_White.png">
</a>
<!--Tabs area-->
<div class="tabsarea">
<div class="tabgrid">
<tab id="services-tab" onmousemove="BoldTab('services-tab')" onmouseout="UnBoldTab('services-tab')" onclick="ShowServicesPane()">services</tab>
<tab id="api-tab" onmousemove="BoldTab('api-tab')" onmouseout="UnBoldTab('api-tab')" onclick="ShowApiPane()">Web API</tab>
<tab id="contact-tab" onmousemove="BoldTab('contact-tab')" onmouseout="UnBoldTab('contact-tab')" onclick="ShowContactPane()">contact</tab>
<tab id="login-tab" onmousemove="BoldTab('login-tab')" onmouseout="UnBoldTab('login-tab')" onclick="ShowUnderConstruction()">login</tab>
</div>
</div>
</div>
</div>
<!--Pane content (tab selections)-->
<div class="content">
<!--The background image-->
<img class="fullcover" src="https://www.mercedesamgf1.com/en/news/2020/07/5-questions-new-livery-2020-answered/_jcr_content/image/MQ6-12-image-20200701122551/MF1_200622_W11_black_44_vp252_4k_edit.jpeg" alt="merc">
<!--Black vail cover for content-->
<div id="content-black-vail" class="contained-black-vail hidden"></div>
<!--The remainder of the content (pages)-->
<div id="homepage-content-pane">
<!--Services-->
<div id="services-pane" class="homepage-pane hidden">
<img id="app-logo" src="assets/images/logo-620x620.jpg">
<!--Description-->
<h3>Apex Visual is a data analytics platform designed for the F1 games by <a href="https://www.codemasters.com/">Codemasters</a></h3>
<h3>Download Apex Visual 2020 for Windows 10 <a href="https://www.microsoft.com/en-us/p/apex-visual-2020/9p5bljv6w9b5">here</a></h3>
<!--Screenshot one: Live coaching-->
<div class="two-content">
<div class="two-content-half left-content">
<img class="framedisplayimg" src="assets/images/framed-screenshots/live_coaching.png">
</div>
<div class="two-content-half right-content">
<div class="two-content-text">Live performance coaching</div>
</div>
</div>
<!--Screenshot 2: Analysis-->
<div class="two-content">
<div class="two-content-half left-content">
<div class="two-content-text">Improve your driving with detailed post-race analysis</div>
</div>
<div class="two-content-half right-content">
<img class="framedisplayimg" src="assets/images/framed-screenshots/session_analysis.png">
</div>
</div>
</div>
<!--API-->
<div id="api-pane" class="homepage-pane hidden">
<h3>The Apex Visual API is a free-to-use service for programmatically accessing F1 2020 session data and performance analysis</h3>
<p id="postmandownloadtxt">Download the Postman collection <a href="assets/ApexVisual2020WebApi.json" download="">here</a></p>
</div>
<!--Contact-->
<div id="contact-pane" class="homepage-pane hidden">
<p class="panetxt firsttxtinpane">Apex Visual is designed and developed by <a href="https://timhanewich.github.io/">Tim Hanewich</a></p>
<a href="https://twitter.com/TimHanewich?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-size="large" data-show-count="false">Follow @TimHanewich</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p class="panetxt">For the fastest turn around in response, please send me a direct message on Twitter</p>
</div>
</div>
</div>
<!--Footer-->
<div class="footer">
<p id="footertxt">© Tim Hanewich ⬥ vBeta8</p>
</div>
</div>
<!--SCRIPTS-->
<script src="js/index.js"></script>
<script src="js/homepage-nav.js"></script>
</body>
</html>