-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>PS3 Simulator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons|Roboto">
<link rel="stylesheet" href="fonts.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js"></script>
<script src="https://unpkg.com/vue-gamepad/dist/vue-gamepad.min.js"></script>
<script src="js/startup.js"></script>
</head>
<body onload="display_ct();">
<div class="top"></div>
<div class="clock"><span id='ct'></span></div>
<div id="xmb-contain">
<div id="xmb">
<ul>
<li class="column" v-for="column,index in columns" v-bind:class="{active:column.active}" v-bind:style="{left:column.position.x+'px'}">
<div class="cell" v-bind:class="{active:column.active}" v-on:click="highlightCell(column.index,0)"><img class="material-icons xmb-icon" v-bind:src="column.icon"></img>
<label>{{column.title}}</label>
</div>
<ul>
<li class="cell submenu" v-for="item,itemIndex in column.items" v-bind:class="{active:item.active}" v-bind:style="{top:item.position.y+'px'}" v-on:click="highlightCell(column.index,itemIndex)" v-bind:href="item.href"><a><img class="material-icons xmb-icon" v-bind:src="item.icon"></img>
<label>{{item.title}}
<label class="subtitle">{{item.subtitle}}</label>
</label></a></li>
</ul>
</li>
</ul>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>