-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 951 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<h1> Android in your browser! </h1>
<p>This is a JavaScript library that embeds Android in your browser. (Nougat) </p>
<button onclick="nougat.launch('#display', '7.1', true, true);">
Launch Android Nougat (7.1)
</button>
<button onclick="nougat.launch('#display', '7.0', true, true);">
Launch Android Nougat (7.0)
</button>
<button onclick="nougat.launch('#display', '6.0', true, true);">
Launch Android Marshmallow (6.0)
</button>
<button onclick="nougat.launch('#display', '5.1', true, true);">
Launch Android Lollipop (5.1)
</button>
<button onclick="nougat.launch('#display', '5.0', true, true);">
Launch Android Lollipop (5.0)
</button>
<button onclick="nougat.launch('#display', '4.4', true, true);">
Launch Android KitKat (4.4)
</button>
<div id="display"></div>
<script src="nougat.js"></script>
</body>
</html>