-
Notifications
You must be signed in to change notification settings - Fork 35
/
documentation.html
131 lines (124 loc) · 4.8 KB
/
documentation.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
<!DOCTYPE html>
<html>
<head>
<title>Documentation | Android-x86</title>
<link rel="stylesheet" type="text/css" href="master.css" title="default">
<link rel="alternate stylesheet" type="text/css" href="dark.css" title="alternate">
<script type="text/javascript" src="styleswitcher.js"></script>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="mobile.png">
</head>
<body>
<div w3-include-html="navbar.html"></div>
<div class="openNav">
<div class="icon"></div>
</div>
<!--HTML of main page-->
<div class="wrapper">
<section>
<h1 class="top">Android-x86</h1>
<h2 class="subheading">Run Android on your PC</h2>
<!--Style Switcher-->
<div class=themebtn>
<button class="button" onclick="setActiveStyleSheet('default'); return false;"><img src="light_theme.png" height="20px" width"20px" title='Toggle Theme'/> </button>
<button class="button" onclick="setActiveStyleSheet('alternate'); return false;" ><img src="dark_theme.png" height="20px" width"20px" title="Toggle Theme"/></button>
</div>
<br>
<h2 id="documentation">Documentation</h2>
<div id="box1">
<div class="doc_link">
<a href="installhowto.html">Installation</a> <img src="img/updated.gif"/>
</div>
<div class="doc_link">
<a href="source.html">Get source and build it</a> <img src="img/updated.gif"/>
</div>
<div class="doc_link">
<a href="documentation/customize_kernel.html">Customize Kernel</a> <img src="img/updated.gif"/>
</div>
<div class="doc_link">
<a href="documentation/new_target.html">Add new target</a>
</div>
<div class="doc_link">
<a href="documentation/analytics.html">Android-x86 Analytics Program</a>
</div>
<div class="doc_link">
<a href="documentation/app_howto.html">App How-To</a>
</div>
<div class="doc_link">
<a href="documentation/debug.html">Debug How-To</a>
</div>
<div class="doc_link">
<a href="documentation/graphic_card.html">Graphic Card Problems</a>
</div>
<div class="doc_link">
<a href="documentation/vbox_audio.html">How to make virtualbox ICH AC97 audio to work with android eclair-x86</a>
</div>
<div class="doc_link">
<a href="documentation/wake_machine.html">How to wake up the machine</a>
</div>
<div class="doc_link">
<a href="documentation/battery.html">How to configure battery service</a>
</div>
<div class="doc_link">
<a href="documentation/camera.html">How to make camera work</a>
</div>
<div class="doc_link">
<a href="documentation/prebuild_images.html">How to use prebuild images</a>
</div>
<div class="doc_link">
<a href="documentation/ndk.html">NDK How-To</a>
</div>
<div class="doc_link">
<a href="documentation/nfs.html">NFS How-To</a>
</div>
<div class="doc_link">
<a href="documentation/qemu.html">QEMU How-To</a>
</div>
<div class="doc_link">
<a href="documentation/sd_card.html">SD Card How-To</a>
</div>
<div class="doc_link">
<a href="documentation/touch_only.html">Touch-only device How-To</a>
</div>
<div class="doc_link">
<a href="documentation/uvesafb.html">Uvesafb How-To</a>
</div>
<div class="doc_link">
<a href="documentation/virtualbox.html">VirtualBox How-To</a>
</div>
<br>
User Experiences:
<ul>
<div class="doc_link">
<li><a href="documentation/ux-optimise-gaming-performance.html">5 Ways to Optimise Your Android Device for Gaming Performance</a></li>
</div>
<div class="doc_link">
<li><a href="documentation/ux-playing-games.html">Is Android x86 a Viable Platform for Playing Games?</a></li>
</div>
<div class="doc_link">
<li><a href="documentation/ux-asp-net-mvc-development.html">ASP.NET MVC Development</a></li>
</div>
</ul>
</div>
<br><br>
<div w3-include-html="footer.html"></div>
</div>
<!--JAVASCRIPT CODE-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
includeHTML();
$(".openNav").click(function() {
$("body").toggleClass("navOpen");
$("nav").toggleClass("open");
$(".wrapper").toggleClass("open");
$(this).toggleClass("open");
});
</script>
<script>
$(".doc_link").click(function() {
window.location = $(this).find("a").attr("href");
return false;
});
</script>
</body>
</html>